Bugfix [#25902] alt+a over 3D view don't up date dropesheet editor

Migrating "redraws" settings from TimeLine view data to per Screen.
The options are now still shown in the TimeLine "Playback" menu
though.

This means that whatever redraw settings you set in a TimeLine editor
will be used throughout a screen (i.e. editor layout) to determine
which editors will get updated during playback, instead of only
certain editors doing certain things at vague times.

---

Also, I moved some version patches pre 2.56 version bump into a
version-check for 2.56. These must've been missed when doing the
release...
This commit is contained in:
2011-02-01 23:41:01 +00:00
parent b8d9d10a65
commit efd1d0f901
10 changed files with 98 additions and 98 deletions

View File

@@ -168,16 +168,16 @@ class TIME_MT_playback(bpy.types.Menu):
def draw(self, context):
layout = self.layout
st = context.space_data
screen = context.screen
scene = context.scene
layout.prop(st, "use_play_top_left_3d_editor")
layout.prop(st, "use_play_3d_editors")
layout.prop(st, "use_play_animation_editors")
layout.prop(st, "use_play_properties_editors")
layout.prop(st, "use_play_image_editors")
layout.prop(st, "use_play_sequence_editors")
layout.prop(st, "use_play_node_editors")
layout.prop(screen, "use_play_top_left_3d_editor")
layout.prop(screen, "use_play_3d_editors")
layout.prop(screen, "use_play_animation_editors")
layout.prop(screen, "use_play_properties_editors")
layout.prop(screen, "use_play_image_editors")
layout.prop(screen, "use_play_sequence_editors")
layout.prop(screen, "use_play_node_editors")
layout.separator()