Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2005-05-05 22:31:39 +0400
committerTon Roosendaal <ton@blender.org>2005-05-05 22:31:39 +0400
commitb33536cdaa4639d002f52efa13f8cd450b87a5fb (patch)
tree0eb09db6b7656b04837a6d86ce225311717494a0 /source/blender/src/headerbuttons.c
parent2b0f00d4bdf3b668517bb4d80881755b5b462fdd (diff)
Two little issues for Timeline window;
- Using Arrowkeys to change frames didn't give proper redraw - Option "Record" now tied to the User-preset "Auto key insert". It is no user preset anymore even, I thought to leave a button in the User- presets for the time being though...
Diffstat (limited to 'source/blender/src/headerbuttons.c')
-rw-r--r--source/blender/src/headerbuttons.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/headerbuttons.c b/source/blender/src/headerbuttons.c
index 7d2f15dc459..c800f9c24ef 100644
--- a/source/blender/src/headerbuttons.c
+++ b/source/blender/src/headerbuttons.c
@@ -500,6 +500,7 @@ static void do_update_for_newframe(int mute)
allqueue(REDRAWINFO, 1);
allqueue(REDRAWSEQ, 1);
allqueue(REDRAWSOUND, 1);
+ allqueue(REDRAWTIME, 1);
allqueue(REDRAWBUTSHEAD, 0);
allqueue(REDRAWBUTSSHADING, 0);
allqueue(REDRAWBUTSOBJECT, 0);
@@ -2104,5 +2105,6 @@ void do_headerbuttons(short event)
else if(event<750) do_action_buttons(event);
else if(event<800) do_time_buttons(curarea, event);
else if(event<900) do_nla_buttons(event);
+ else if(event>=REDRAWVIEW3D) allqueue(event, 0);
}