diff options
author | Ken Moore <moorekou@gmail.com> | 2016-02-02 08:41:52 -0500 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-02-02 08:41:52 -0500 |
commit | b0076b4ea912e417f7c12dd87733493b566f70cb (patch) | |
tree | d85446d6f3a471ed49fccb74cedc95dfa3c8fe92 /lumina-desktop | |
parent | Add a few more built-in Qt paths to the OS-detect file, and commit a bit more... (diff) | |
parent | Merge pull request #177 from codersean/master (diff) | |
download | lumina-b0076b4ea912e417f7c12dd87733493b566f70cb.tar.gz lumina-b0076b4ea912e417f7c12dd87733493b566f70cb.tar.bz2 lumina-b0076b4ea912e417f7c12dd87733493b566f70cb.zip |
Merge branch 'master' of github.com:pcbsd/lumina
Diffstat (limited to 'lumina-desktop')
-rw-r--r-- | lumina-desktop/panel-plugins/LPPlugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/LPPlugin.h b/lumina-desktop/panel-plugins/LPPlugin.h index 995c8742..c4c76297 100644 --- a/lumina-desktop/panel-plugins/LPPlugin.h +++ b/lumina-desktop/panel-plugins/LPPlugin.h @@ -32,6 +32,7 @@ public: this->setFocusPolicy(Qt::NoFocus); //no keyboard focus on the panel/plugins if(horizontal){LY = new QBoxLayout(QBoxLayout::LeftToRight, this); } else{ LY = new QBoxLayout(QBoxLayout::TopToBottom, this); } + this->setObjectName(ptype.section("---",0,0)); LY->setContentsMargins(0,0,0,0); LY->setSpacing(1); this->setLayout(LY); @@ -73,4 +74,4 @@ signals: void MenuClosed(); //This needs to be emitted when any plugin's menu is closed for some reason (check/set focus properly) }; -#endif
\ No newline at end of file +#endif |