diff options
Diffstat (limited to 'lumina-desktop/LPanel.cpp')
-rw-r--r-- | lumina-desktop/LPanel.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lumina-desktop/LPanel.cpp b/lumina-desktop/LPanel.cpp index 2eabc96e..b0ead2e0 100644 --- a/lumina-desktop/LPanel.cpp +++ b/lumina-desktop/LPanel.cpp @@ -188,13 +188,10 @@ void LPanel::UpdatePanel(bool geomonly){ this->move(hidepoint); //Could bleed over onto the screen right } } - //With QT5, we need to make sure to reset window properties on occasion - //LSession::handle()->XCB->SetDisableWMActions(this->winId()); //ensure no WM actions - //LSession::handle()->XCB->SetAsSticky(this->winId()); if(DEBUG){ qDebug() << " - Done with panel geometry"; } if(geomonly){ return; } //Now update the appearance of the toolbar - if(settings->value(PPREFIX+"customcolor", false).toBool()){ + if(settings->value(PPREFIX+"customColor", false).toBool()){ QString color = settings->value(PPREFIX+"color", "rgba(255,255,255,160)").toString(); QString style = "QWidget#LuminaPanelColor{ background: %1; border-radius: 3px; border: 1px solid %1; }"; style = style.arg(color); |