aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-10-04 11:21:36 -0400
committerKen Moore <ken@ixsystems.com>2016-10-04 11:21:36 -0400
commit1db0f0125a34c30465586c102fe7c618bb196f87 (patch)
treeacdd40e26f7366c3ce568ba0a2381ce4bcc20d9c
parentFix the bytes to display function in the case where the number of bytes *exac... (diff)
downloadlumina-1db0f0125a34c30465586c102fe7c618bb196f87.tar.gz
lumina-1db0f0125a34c30465586c102fe7c618bb196f87.tar.bz2
lumina-1db0f0125a34c30465586c102fe7c618bb196f87.zip
Fis the stylesheet for the "active/non-active" treewidget browser.
-rw-r--r--src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp
index e007b974..1112f971 100644
--- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp
+++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp
@@ -136,9 +136,9 @@ QStringList BrowserWidget::history(){
}
void BrowserWidget::setShowActive(bool show){
- if(!show){ this->setStyleSheet("QAbstractScrollArea{ background-color: rgba(10,10,10,10); }"); }
+ if(!show){ this->setStyleSheet("QAbstractScrollArea{ background-color: rgba(10,10,10,10); } QHeaderView{ background-color: lightgrey; }"); }
else{
- this->setStyleSheet( "QAbstractScrollArea{ background-color: white; }");
+ this->setStyleSheet( "");
}
}
bgstack15