aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LDesktop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lumina-desktop/LDesktop.cpp')
-rw-r--r--lumina-desktop/LDesktop.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/lumina-desktop/LDesktop.cpp b/lumina-desktop/LDesktop.cpp
index eadf18c7..54d4ba11 100644
--- a/lumina-desktop/LDesktop.cpp
+++ b/lumina-desktop/LDesktop.cpp
@@ -170,7 +170,6 @@ void LDesktop::SettingsChanged(){
UpdateDesktop();
UpdatePanels();
UpdateMenu();
- issyncing = false;
QTimer::singleShot(200, this, SLOT(UnlockSettings()) ); //give it a few moments to settle before performing another sync
}
@@ -291,8 +290,7 @@ void LDesktop::UpdateDesktop(){
changingsettings=true; //don't let the change cause a refresh
settings->setValue(DPREFIX+"pluginlist", plugins);
settings->sync();
- //QTimer::singleShot(200, this, SLOT(UnlockSettings()) );
- changingsettings=false;
+ QTimer::singleShot(200, this, SLOT(UnlockSettings()) );
}
deskupdating = false;
}
bgstack15