]> code.delx.au - offlineimap/commitdiff
/offlineimap/head: changeset 204
authorjgoerzen <jgoerzen>
Thu, 8 Aug 2002 00:46:18 +0000 (01:46 +0100)
committerjgoerzen <jgoerzen>
Thu, 8 Aug 2002 00:46:18 +0000 (01:46 +0100)
Scrolling behavior is better now; sometimes, with fast-scrolling text,
the log would stop scrolling.

offlineimap/head/debian/changelog
offlineimap/head/offlineimap/ui/Tk.py

index 8556d492c262406f142d96c6001445aabd980dd8..80a0c1eb884163e8a9f772b02cbf6d2baabac63d 100644 (file)
@@ -1,7 +1,8 @@
 offlineimap (3.2.2) unstable; urgency=low
 
   * Updated manual to show new Gray color.
-
+  * Scrolling behavior is better now; sometimes, with fast-scrolling text,
+    the log would stop scrolling.
 
  -- John Goerzen <jgoerzen@complete.org>  Thu, 25 Jul 2002 08:22:25 -0500
 
index be671334d17947eeebc6da04ccfb9e2cf40cf818..f57cfe28ba28f1fff8aad6e2867882ba9f7015dc 100644 (file)
@@ -514,12 +514,10 @@ class Blinkenlights(VerboseUI):
         VerboseUI._msg(s, msg)
         color = s.gettf().getcolor()
         rescroll = 1
-        #print s.text.vbar.get()[1]
-        if s.text.vbar.get()[1] != 1.0:
-            rescroll = 0
-
         s.textlock.acquire()
         try:
+            if s.text.vbar.get()[1] != 1.0:
+                rescroll = 0
             s.text.config(state = NORMAL)
             if not color in s.tags:
                 s.text.tag_config(color, foreground = color)