From 9d24f3df0a7bddaa951eae6bd92be96dd6f13efc Mon Sep 17 00:00:00 2001 From: belugas Date: Fri, 6 Oct 2006 01:18:12 +0000 Subject: [PATCH] (svn r6660) -Fix(r6631): Prevent the fast-foward button to toggle up and down when pressing shift. The _fastforward and _pause bool are not exactly used as bool. So, when doing test with them, amek it so that the will appear as such --- main_gui.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main_gui.c b/main_gui.c index facf9a514c..b04622e6e3 100644 --- a/main_gui.c +++ b/main_gui.c @@ -1838,12 +1838,12 @@ static void MainToolbarWndProc(Window *w, WindowEvent *e) case WE_ON_EDIT_TEXT: HandleOnEditText(e); break; case WE_MOUSELOOP: - if (IsWindowWidgetLowered(w, 0) != _pause) { + if (IsWindowWidgetLowered(w, 0) != !!_pause) { ToggleWidgetLoweredState(w, 0); SetWindowDirty(w); } - if (IsWindowWidgetLowered(w, 1) != _fast_forward) { + if (IsWindowWidgetLowered(w, 1) != !!_fast_forward) { ToggleWidgetLoweredState(w, 1); SetWindowDirty(w); } @@ -2033,12 +2033,12 @@ static void ScenEditToolbarWndProc(Window *w, WindowEvent *e) case WE_ON_EDIT_TEXT: HandleOnEditText(e); break; case WE_MOUSELOOP: - if (IsWindowWidgetLowered(w, 0) != _pause) { + if (IsWindowWidgetLowered(w, 0) != !!_pause) { ToggleWidgetLoweredState(w, 0); SetWindowDirty(w); } - if (IsWindowWidgetLowered(w, 1) != _fast_forward) { + if (IsWindowWidgetLowered(w, 1) != !!_fast_forward) { ToggleWidgetLoweredState(w, 1); SetWindowDirty(w); }