aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LPanel.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-02-02 12:08:26 -0500
committerKen Moore <ken@pcbsd.org>2015-02-02 12:08:26 -0500
commit40b9d3b6c380e74d4feef07ca07fd01277a25f2e (patch)
tree06ff96437cc2b79f263392465457ac3012ae1c3a /lumina-desktop/LPanel.cpp
parentMake sure that the font-family declaration is set off within quotes when asse... (diff)
downloadlumina-40b9d3b6c380e74d4feef07ca07fd01277a25f2e.tar.gz
lumina-40b9d3b6c380e74d4feef07ca07fd01277a25f2e.tar.bz2
lumina-40b9d3b6c380e74d4feef07ca07fd01277a25f2e.zip
Make sure that the panel has the "sticky" flag set. This ensures that it is consistant across all workspaces.
Diffstat (limited to 'lumina-desktop/LPanel.cpp')
-rw-r--r--lumina-desktop/LPanel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/LPanel.cpp b/lumina-desktop/LPanel.cpp
index e1be528d..09ddb412 100644
--- a/lumina-desktop/LPanel.cpp
+++ b/lumina-desktop/LPanel.cpp
@@ -49,8 +49,8 @@ LPanel::LPanel(QSettings *file, int scr, int num, QWidget *parent) : QWidget(){
//Set special window flags on the panel for proper usage
this->show();
//this->setFocusPolicy(Qt::NoFocus);
- //LSession::handle()->XCB->SetAsSticky(this->winId());
- //LSession::handle()->XCB->SetAsPanel(this->winId()); //make sure this happens after Qt creates the window first
+ LSession::handle()->XCB->SetAsSticky(this->winId());
+ //LSession::handle()->XCB->SetAsPanel(this->winId());
LX11::SetAsPanel(this->winId());
QTimer::singleShot(1,this, SLOT(UpdatePanel()) ); //start this in a new thread
bgstack15