aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-11-24 13:15:19 -0500
committerKen Moore <moorekou@gmail.com>2015-11-24 13:15:19 -0500
commitbe276a9101495a0c9e5adfc0ea435433303fba1f (patch)
treecb04e2301536c1ec2a192620f61dc42b5cdd03b6
parentAdjust the start menu to show the "genericName" instead of the comment undern... (diff)
downloadlumina-be276a9101495a0c9e5adfc0ea435433303fba1f.tar.gz
lumina-be276a9101495a0c9e5adfc0ea435433303fba1f.tar.bz2
lumina-be276a9101495a0c9e5adfc0ea435433303fba1f.zip
Change the "quick settings" button to now say "Preferences" instead. Also remove a sync() operation when changing quicklaunch items.
-rw-r--r--lumina-desktop/panel-plugins/systemstart/StartMenu.cpp2
-rw-r--r--lumina-desktop/panel-plugins/systemstart/StartMenu.ui6
2 files changed, 4 insertions, 4 deletions
diff --git a/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp b/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp
index 661302dc..043cbba0 100644
--- a/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp
+++ b/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp
@@ -138,7 +138,7 @@ void StartMenu::UpdateQuickLaunch(QString path, bool keep){
else{ QL.removeAll(path); }
QL.removeDuplicates();
LSession::handle()->sessionSettings()->setValue("QuicklaunchApps",QL);
- LSession::handle()->sessionSettings()->sync();
+ //LSession::handle()->sessionSettings()->sync();
emit UpdateQuickLaunch(QL);
}
diff --git a/lumina-desktop/panel-plugins/systemstart/StartMenu.ui b/lumina-desktop/panel-plugins/systemstart/StartMenu.ui
index 7156b4f3..3b6be0a3 100644
--- a/lumina-desktop/panel-plugins/systemstart/StartMenu.ui
+++ b/lumina-desktop/panel-plugins/systemstart/StartMenu.ui
@@ -259,7 +259,7 @@
<enum>Qt::NoFocus</enum>
</property>
<property name="text">
- <string>Quick Settings</string>
+ <string>Preferences</string>
</property>
<property name="iconSize">
<size>
@@ -438,8 +438,8 @@
<rect>
<x>0</x>
<y>0</y>
- <width>178</width>
- <height>284</height>
+ <width>98</width>
+ <height>28</height>
</rect>
</property>
</widget>
bgstack15