aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LDesktop.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-01-21 20:40:39 -0500
committerKen Moore <ken@pcbsd.org>2015-01-21 20:40:39 -0500
commit47db6ecc29daba4cd59c7235a9f22457350b979a (patch)
tree9df1ecdc6e47e3a49fd8172adb229529a9dff113 /lumina-desktop/LDesktop.h
parentAlso fix a bug in lumina-config where the app selection dialog needed to be c... (diff)
downloadlumina-47db6ecc29daba4cd59c7235a9f22457350b979a.tar.gz
lumina-47db6ecc29daba4cd59c7235a9f22457350b979a.tar.bz2
lumina-47db6ecc29daba4cd59c7235a9f22457350b979a.zip
Quick fix for the desktop plugins system: too many different lock flags causing random issues. Cut it down to 2 boolians only now, and the desktop responds correctly/reliably again.
Diffstat (limited to 'lumina-desktop/LDesktop.h')
-rw-r--r--lumina-desktop/LDesktop.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/LDesktop.h b/lumina-desktop/LDesktop.h
index f052d0ec..01a9a355 100644
--- a/lumina-desktop/LDesktop.h
+++ b/lumina-desktop/LDesktop.h
@@ -57,7 +57,7 @@ private:
QString DPREFIX;
int desktopnumber;
//int xoffset;
- bool defaultdesktop, desktoplocked, deskupdating, changingsettings, issyncing, usewinmenu, bgupdating;
+ bool defaultdesktop, desktoplocked, issyncing, usewinmenu, bgupdating;
QStringList oldBGL;
QList<LPanel*> PANELS;
QMdiArea *bgDesktop; //desktop widget area
@@ -75,7 +75,7 @@ private:
private slots:
void InitDesktop();
void SettingsChanged();
- void UnlockSettings(){ issyncing=false; changingsettings=false;}
+ void UnlockSettings(){ issyncing=false; }
//Menu functions
void UpdateMenu(bool fast = false);
void ShowMenu(){
bgstack15