(svn r6660) -Fix(r6631): Prevent the fast-foward button to toggle up and down when pressing shift.
authorbelugas
Fri, 06 Oct 2006 01:18:12 +0000
changeset 4748 7093ad395186
parent 4747 c49af691700f
child 4749 9490e643f23f
(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
--- a/main_gui.c	Thu Oct 05 23:38:40 2006 +0000
+++ b/main_gui.c	Fri Oct 06 01:18:12 2006 +0000
@@ -1838,12 +1838,12 @@
 	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 @@
 	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);
 		}