From cd7f54f1174ce4913554df05ee2c0bdce5491a9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Fri, 14 May 2010 20:25:26 +0000 Subject: [PATCH] Missing UnlockLooper() in early return. Never seen it have any effect, just found it because I am trying to track down another bug. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36815 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/icon-o-matic/transformable/TransformGradientBox.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apps/icon-o-matic/transformable/TransformGradientBox.cpp b/src/apps/icon-o-matic/transformable/TransformGradientBox.cpp index d8848a9c89..3fd7058162 100644 --- a/src/apps/icon-o-matic/transformable/TransformGradientBox.cpp +++ b/src/apps/icon-o-matic/transformable/TransformGradientBox.cpp @@ -100,6 +100,7 @@ TransformGradientBox::ObjectChanged(const Observable* object) if (object == fShape) { fView->Invalidate(Bounds()); + fView->UnlockLooper(); return; }