diff options
author | Ken Moore <ken@ixsystems.com> | 2016-10-04 11:21:36 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2016-10-04 11:21:36 -0400 |
commit | 1db0f0125a34c30465586c102fe7c618bb196f87 (patch) | |
tree | acdd40e26f7366c3ce568ba0a2381ce4bcc20d9c | |
parent | Fix the bytes to display function in the case where the number of bytes *exac... (diff) | |
download | lumina-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.cpp | 4 |
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( ""); } } |