aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-29 13:29:00 -0400
committerKen Moore <ken@ixsystems.com>2017-06-29 13:29:00 -0400
commit1325f89e7b9b8baee10c47ef8473bffd5052e9b5 (patch)
tree5082c71c7d514cd378532158bb3787c2e37c1cfa /src-qt5/core/libLumina
parentAlso clean up the default stylesheet for the window frame right now (diff)
downloadlumina-1325f89e7b9b8baee10c47ef8473bffd5052e9b5.tar.gz
lumina-1325f89e7b9b8baee10c47ef8473bffd5052e9b5.tar.bz2
lumina-1325f89e7b9b8baee10c47ef8473bffd5052e9b5.zip
Some more tweaks to the default stylesheet for the window frame.
Diffstat (limited to 'src-qt5/core/libLumina')
-rw-r--r--src-qt5/core/libLumina/RootSubWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/RootSubWindow.cpp b/src-qt5/core/libLumina/RootSubWindow.cpp
index cab02db4..1814776a 100644
--- a/src-qt5/core/libLumina/RootSubWindow.cpp
+++ b/src-qt5/core/libLumina/RootSubWindow.cpp
@@ -162,7 +162,7 @@ void RootSubWindow::initWindowFrame(){
maxB->setObjectName("Button_Maximize");
otherM->setObjectName("Menu_Actions");
titleLabel->setObjectName("Label_Title");
- this->setStyleSheet("QWidget#WindowFrame{background-color: rgba(0,0,0,125);} QWidget#Label_Title{background-color: transparent; color: white; } QToolButton{background-color: transparent; border-color: transparent; } QToolButton::hover{border-color: white;}");
+ this->setStyleSheet("QWidget#WindowFrame{background-color: rgba(0,0,0,125);} QWidget#Label_Title{background-color: transparent; color: white; } QToolButton{background-color: transparent; border: 1px solid transparent; } QToolButton::hover{border-color: white;} QToolButton::menu-arrow{ image: none; }");
//And adjust the margins
mainLayout->setContentsMargins(WIN_BORDER,WIN_BORDER,WIN_BORDER,WIN_BORDER); //default border
mainLayout->setSpacing(0);
bgstack15