diff options
Diffstat (limited to 'lumina-desktop/panel-plugins/userbutton')
-rw-r--r-- | lumina-desktop/panel-plugins/userbutton/UserWidget.cpp | 6 | ||||
-rw-r--r-- | lumina-desktop/panel-plugins/userbutton/UserWidget.h | 3 | ||||
-rw-r--r-- | lumina-desktop/panel-plugins/userbutton/UserWidget.ui | 32 |
3 files changed, 8 insertions, 33 deletions
diff --git a/lumina-desktop/panel-plugins/userbutton/UserWidget.cpp b/lumina-desktop/panel-plugins/userbutton/UserWidget.cpp index da115478..f1f9d03e 100644 --- a/lumina-desktop/panel-plugins/userbutton/UserWidget.cpp +++ b/lumina-desktop/panel-plugins/userbutton/UserWidget.cpp @@ -32,7 +32,7 @@ UserWidget::UserWidget(QWidget* parent) : QTabWidget(parent), ui(new Ui::UserWid //Setup the special buttons connect(ui->tool_app_store, SIGNAL(clicked()), this, SLOT(openStore()) ); connect(ui->tool_controlpanel, SIGNAL(clicked()), this, SLOT(openControlPanel()) ); - connect(ui->tool_qtconfig, SIGNAL(clicked()), this, SLOT(openQtConfig()) ); + //connect(ui->tool_qtconfig, SIGNAL(clicked()), this, SLOT(openQtConfig()) ); lastUpdate = QDateTime(); //make sure it refreshes @@ -152,13 +152,13 @@ void UserWidget::UpdateAll(){ }else{ ui->tool_controlpanel->setVisible(false); //not available } - QString QTCONFIG = LOS::QtConfigShortcut(); + /*QString QTCONFIG = LOS::QtConfigShortcut(); if(QFile::exists(QTCONFIG) && !QTCONFIG.isEmpty()){ ui->tool_qtconfig->setVisible(true); ui->tool_qtconfig->setIcon( LXDG::findIcon("preferences-desktop-theme","") ); }else{ ui->tool_qtconfig->setVisible(false); - } + }*/ //Now update the menus UpdateMenu(); } diff --git a/lumina-desktop/panel-plugins/userbutton/UserWidget.h b/lumina-desktop/panel-plugins/userbutton/UserWidget.h index f2e8f6d8..af9408dd 100644 --- a/lumina-desktop/panel-plugins/userbutton/UserWidget.h +++ b/lumina-desktop/panel-plugins/userbutton/UserWidget.h @@ -80,9 +80,6 @@ private slots: void openDeskSettings(){ LaunchItem("lumina-config", false); } - void openQtConfig(){ - LaunchItem( LOS::QtConfigShortcut(), false); - } void openScreenSaverConfig(){ LaunchItem(SSAVER, false); } diff --git a/lumina-desktop/panel-plugins/userbutton/UserWidget.ui b/lumina-desktop/panel-plugins/userbutton/UserWidget.ui index 53eb1f94..9ef5af7e 100644 --- a/lumina-desktop/panel-plugins/userbutton/UserWidget.ui +++ b/lumina-desktop/panel-plugins/userbutton/UserWidget.ui @@ -6,7 +6,7 @@ <rect> <x>0</x> <y>0</y> - <width>292</width> + <width>294</width> <height>289</height> </rect> </property> @@ -276,8 +276,8 @@ <rect> <x>0</x> <y>0</y> - <width>259</width> - <height>247</height> + <width>98</width> + <height>28</height> </rect> </property> </widget> @@ -444,8 +444,8 @@ <rect> <x>0</x> <y>0</y> - <width>259</width> - <height>247</height> + <width>98</width> + <height>28</height> </rect> </property> </widget> @@ -528,28 +528,6 @@ </widget> </item> <item> - <widget class="QToolButton" name="tool_qtconfig"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> - <horstretch>0</horstretch> - <verstretch>0</verstretch> - </sizepolicy> - </property> - <property name="text"> - <string>Application Appearance</string> - </property> - <property name="iconSize"> - <size> - <width>20</width> - <height>20</height> - </size> - </property> - <property name="toolButtonStyle"> - <enum>Qt::ToolButtonTextBesideIcon</enum> - </property> - </widget> - </item> - <item> <widget class="QToolButton" name="tool_config_screensaver"> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> |