From 98042122facf6de00ac837f9fc8467efb3441e9e Mon Sep 17 00:00:00 2001 From: JoshDW19 Date: Mon, 1 Feb 2016 14:58:07 -0500 Subject: Ken changed theming to be more specific for Lumina on my system so I can begin theming elements. --- lumina-desktop/panel-plugins/LPPlugin.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit