aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/AppMenu.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-09-19 14:22:37 -0400
committerKen Moore <ken@pcbsd.org>2014-09-19 14:22:37 -0400
commit6aca0b96c833bb14fbf3a90170ca861b6d1e8935 (patch)
treefd5a57c8bf7777107c3b312c1229f8ba230a3cdd /lumina-desktop/AppMenu.cpp
parentAdd support for detecting whether the running user has permission to shutdown... (diff)
downloadlumina-6aca0b96c833bb14fbf3a90170ca861b6d1e8935.tar.gz
lumina-6aca0b96c833bb14fbf3a90170ca861b6d1e8935.tar.bz2
lumina-6aca0b96c833bb14fbf3a90170ca861b6d1e8935.zip
Update the appearance/functionality of the userbutton quite a bit in lumina-desktop.
1) Should now only reload the applications list if the installed apps changed recently, making the menu show up a ton faster. 2) Move the tabs over to the left side of the UI, and remove a lot of empty space. 3) Attempt to have the widget track the mouse and switch to a new tab on mouse-over instead of requiring a click (still in testing - no loss of functionality at the moment).
Diffstat (limited to 'lumina-desktop/AppMenu.cpp')
-rw-r--r--lumina-desktop/AppMenu.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lumina-desktop/AppMenu.cpp b/lumina-desktop/AppMenu.cpp
index c2d79c09..bf7f6d6f 100644
--- a/lumina-desktop/AppMenu.cpp
+++ b/lumina-desktop/AppMenu.cpp
@@ -35,6 +35,7 @@ void AppMenu::updateAppList(){
QList<XDGDesktop> allfiles = LXDG::systemDesktopFiles();
APPS = LXDG::sortDesktopCats(allfiles);
APPS.insert("All", LXDG::sortDesktopNames(allfiles));
+ lastHashUpdate = QDateTime::currentDateTime();
//Now fill the menu
bool ok; //for checking inputs
//Add link to the file manager
bgstack15