SmallSense__AbstractSearchDialog.st
changeset 868 1aa481c0a3b3
parent 423 60c930c93819
child 1072 a44c741ee5ef
--- a/SmallSense__AbstractSearchDialog.st	Mon Jun 15 09:09:44 2015 +0200
+++ b/SmallSense__AbstractSearchDialog.st	Wed May 27 16:00:07 2015 +0100
@@ -149,6 +149,15 @@
     "Modified: / 21-02-2015 / 08:58:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
+!AbstractSearchDialog methodsFor:'change & update-delayed'!
+
+delayedUpdateMatchingObjectPOs: matchingPOsArg
+    self updateMatchingLabelToNormal.
+    super delayedUpdateMatchingObjectPOs: matchingPOsArg
+
+    "Created: / 27-05-2015 / 15:58:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
 !AbstractSearchDialog methodsFor:'hooks'!
 
 commonPostBuild
@@ -180,9 +189,11 @@
 !AbstractSearchDialog methodsFor:'searching'!
 
 matchingObjectPOsForPattern: pattern
+    self updateMatchingLabelToSearching.
     ^ processor matchingObjectPOsForPattern: pattern filter: filter inEnvironment: self environment
 
     "Created: / 13-12-2014 / 08:33:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 27-05-2015 / 15:57:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !AbstractSearchDialog class methodsFor:'documentation'!