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>2010-12-03 21:26:42 +0300
committerTon Roosendaal <ton@blender.org>2010-12-03 21:26:42 +0300
commit45922c91508883dadd1befd205602e7183ce8392 (patch)
tree89d486d140de43507e0be3bf24d3f9d7060edb22 /source/blender/windowmanager/intern/wm_cursors.c
parent990b487c730ac192405682fa45232f6542cdd14c (diff)
Bugfix #24568
The old blocking "time cursor" wasn't working anymore. Commit 32798 overlooked that the initialization was needed. Now bakes show it again. Note to self: it seems to flash slightly (like 2.49), need to check on it one day.
Diffstat (limited to 'source/blender/windowmanager/intern/wm_cursors.c')
-rw-r--r--source/blender/windowmanager/intern/wm_cursors.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_cursors.c b/source/blender/windowmanager/intern/wm_cursors.c
index 966bc8b3285..43352f4efd2 100644
--- a/source/blender/windowmanager/intern/wm_cursors.c
+++ b/source/blender/windowmanager/intern/wm_cursors.c
@@ -216,13 +216,15 @@ void WM_timecursor(wmWindow *win, int nr)
{0, 60, 66, 66, 60, 66, 66, 60},
{0, 56, 68, 68, 120, 64, 68, 56}
};
- unsigned char mask[16][2]= {{0}};
+ unsigned char mask[16][2];
unsigned char bitmap[16][2]= {{0}};
int i, idx;
if(win->lastcursor == 0)
win->lastcursor= win->cursor;
+ memset(&mask, 0xFF, sizeof(mask));
+
/* print number bottom right justified */
for (idx= 3; nr && idx>=0; idx--) {
char *digit= number_bitmaps[nr%10];