aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/RootSubWindow.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-27 10:21:41 -0400
committerKen Moore <ken@ixsystems.com>2017-06-27 10:21:41 -0400
commit91c9e6f4c7b5aad491d5f8fdd892e038b2cd9656 (patch)
tree3f21402cf45533e7aa7aaee5432fbef7713370bf /src-qt5/core/libLumina/RootSubWindow.cpp
parentAdd some more debugging. (diff)
downloadlumina-91c9e6f4c7b5aad491d5f8fdd892e038b2cd9656.tar.gz
lumina-91c9e6f4c7b5aad491d5f8fdd892e038b2cd9656.tar.bz2
lumina-91c9e6f4c7b5aad491d5f8fdd892e038b2cd9656.zip
Start working on the RootSubWindow interactions.
Diffstat (limited to 'src-qt5/core/libLumina/RootSubWindow.cpp')
-rw-r--r--src-qt5/core/libLumina/RootSubWindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core/libLumina/RootSubWindow.cpp b/src-qt5/core/libLumina/RootSubWindow.cpp
index d00a3a75..3c8e5b97 100644
--- a/src-qt5/core/libLumina/RootSubWindow.cpp
+++ b/src-qt5/core/libLumina/RootSubWindow.cpp
@@ -155,7 +155,7 @@ void RootSubWindow::initWindowFrame(){
maxB->setObjectName("Button_Maximize");
otherM->setObjectName("Menu_Actions");
titleLabel->setObjectName("Label_Title");
- this->setStyleSheet("QWidget#WindowFrame{background-color: darkblue;} QWidget#Label_Title{background-color: transparent; color: white; }");
+ this->setStyleSheet("QWidget#WindowFrame{background-color: rgba(0,0,0,125);} QWidget#Label_Title{background-color: transparent; color: white; }");
//And adjust the margins
mainLayout->setContentsMargins(WIN_BORDER,WIN_BORDER,WIN_BORDER,WIN_BORDER);
mainLayout->setSpacing(0);
@@ -227,7 +227,7 @@ void RootSubWindow::startResizing(){
void RootSubWindow::propertiesChanged(QList<NativeWindow::Property> props, QList<QVariant> vals){
for(int i=0; i<props.length() && i<vals.length(); i++){
if(vals[i].isNull()){ return; } //not the same as a default/empty value - the property has just not been set yet
- //qDebug() << "Set Window Property:" << props[i] << vals[i];
+ qDebug() << "RootSubWindow: Property Changed:" << props[i] << vals[i];
switch(props[i]){
case NativeWindow::Visible:
if(vals[i].toBool()){ this->show(); }
bgstack15