diff options
author | Ken Moore <ken@pcbsd.org> | 2015-02-02 12:08:26 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-02-02 12:08:26 -0500 |
commit | 40b9d3b6c380e74d4feef07ca07fd01277a25f2e (patch) | |
tree | 06ff96437cc2b79f263392465457ac3012ae1c3a /lumina-desktop/LPanel.cpp | |
parent | Make sure that the font-family declaration is set off within quotes when asse... (diff) | |
download | lumina-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.cpp | 4 |
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 |