From 12e228eba677413931c388e6f4da2a31e951d0ae Mon Sep 17 00:00:00 2001 From: csoler Date: Tue, 2 Jul 2013 19:55:13 +0000 Subject: [PATCH] added eventsLocked() protection to UpdateGUI() timer callback git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6472 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/notifyqt.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/retroshare-gui/src/gui/notifyqt.cpp b/retroshare-gui/src/gui/notifyqt.cpp index bca53f236..ee98d72c7 100644 --- a/retroshare-gui/src/gui/notifyqt.cpp +++ b/retroshare-gui/src/gui/notifyqt.cpp @@ -738,6 +738,9 @@ void NotifyQt::enable() void NotifyQt::UpdateGUI() { + if(RsAutoUpdatePage::eventsLocked()) + return ; + { QMutexLocker m(&_mutex) ; if(!_enabled)