From e9a58e0f3ab5b2d1e8505012367ee92dd8967db2 Mon Sep 17 00:00:00 2001 From: natureh 510 Date: Fri, 9 Nov 2012 21:24:18 +0100 Subject: [PATCH] Solving issue 1618: "GUI freezes: Adjuster::sliderReleased" ; This patch has been confirmed to solve the problem, but without warranty of other side effect. --- rtgui/adjuster.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/rtgui/adjuster.cc b/rtgui/adjuster.cc index e2b64d3f3..9db6e279a 100644 --- a/rtgui/adjuster.cc +++ b/rtgui/adjuster.cc @@ -439,7 +439,6 @@ void Adjuster::setAutoValue (bool a) { bool Adjuster::notifyListener () { if (eventPending && adjusterListener!=NULL && !blocked) { - GThreadLock lock; adjusterListener->adjusterChanged (this, spin->get_value ()); } eventPending = false; @@ -450,7 +449,6 @@ bool Adjuster::notifyListener () { bool Adjuster::notifyListenerAutoToggled () { if (adjusterListener!=NULL && !blocked) { - GThreadLock lock; adjusterListener->adjusterAutoToggled(this, automatic->get_active()); } return false;