[Bf-blender-cvs] [42ba931] master: Fix T41223: F-Curve sliders won't update values during playback when mouse cursor is outside the left panel.

Bastien Montagne noreply at git.blender.org
Tue Jul 29 15:32:33 CEST 2014


Commit: 42ba931fedf7e994781d80ad919e0b02aec9019f
Author: Bastien Montagne
Date:   Tue Jul 29 15:31:53 2014 +0200
Branches: master
https://developer.blender.org/rB42ba931fedf7e994781d80ad919e0b02aec9019f

Fix T41223: F-Curve sliders won't update values during playback when mouse cursor is outside the left panel.

===================================================================

M	source/blender/editors/screen/screen_ops.c

===================================================================

diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c
index 7d22990..7c7574b 100644
--- a/source/blender/editors/screen/screen_ops.c
+++ b/source/blender/editors/screen/screen_ops.c
@@ -3220,6 +3220,16 @@ static int match_region_with_redraws(int spacetype, int regiontype, int redraws)
 				
 		}
 	}
+	else if (regiontype == RGN_TYPE_CHANNELS) {
+		switch (spacetype) {
+			case SPACE_IPO:
+			case SPACE_ACTION:
+			case SPACE_NLA:
+				if (redraws & TIME_ALL_ANIM_WIN)
+					return 1;
+				break;
+		}
+	}
 	else if (regiontype == RGN_TYPE_UI) {
 		if (spacetype == SPACE_CLIP) {
 			/* Track Preview button is on Properties Editor in SpaceClip,




More information about the Bf-blender-cvs mailing list