# HG changeset patch # User rubidium # Date 1222197900 0 # Node ID 3c3e31214f4cfcdfa49afe33c0192c4094c637ec # Parent a99cf854c6d02eb2f0b6193901f1605f7fba77ef (svn r14392) -Fix [FS#1404]: some widgets saw a single click as multiple clicks. diff -r a99cf854c6d0 -r 3c3e31214f4c src/window_gui.h --- a/src/window_gui.h Tue Sep 23 15:24:15 2008 +0000 +++ b/src/window_gui.h Tue Sep 23 19:25:00 2008 +0000 @@ -487,8 +487,8 @@ * Window flags */ enum WindowFlags { - WF_TIMEOUT_TRIGGER = 2, ///< When the timeout should start triggering - WF_TIMEOUT_BEGIN = 5, ///< The initial value for the timeout + WF_TIMEOUT_TRIGGER = 1, ///< When the timeout should start triggering + WF_TIMEOUT_BEGIN = 7, ///< The initial value for the timeout WF_TIMEOUT_MASK = 7, ///< Window timeout counter bit mask (3 bits) WF_DRAGGING = 1 << 3, ///< Window is being dragged WF_SCROLL_UP = 1 << 4, ///< Upper scroll button has been pressed, @see ScrollbarClickHandler()