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:
authorJoshua Leung <aligorith@gmail.com>2008-07-11 04:36:38 +0400
committerJoshua Leung <aligorith@gmail.com>2008-07-11 04:36:38 +0400
commit2e144abfbdeed7f6011c47e36d5f8f514b1bcee7 (patch)
tree7e807cf5c16961a968c974c29210108ef9a085d0 /source/blender/src
parent8eab9e15d5e4dac5373b8a2c3ed771cf2cf2f933 (diff)
Bugfix #17306: Missing refresh call for button in UserPrefs
Autokey settings were missing redraw for Info-window
Diffstat (limited to 'source/blender/src')
-rw-r--r--source/blender/src/space.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index fe9bb3279cc..3b8bb4c3929 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -4440,7 +4440,10 @@ static void winqreadinfospace(ScrArea *sa, void *spacedata, BWinEvent *evt)
switch(event) {
case UI_BUT_EVENT:
- if(val==REDRAWTIME) allqueue(REDRAWTIME, 0);
+ if(val==REDRAWTIME) {
+ allqueue(REDRAWTIME, 0);
+ addqueue(sa->win, REDRAW, 1);
+ }
else if(val==B_ADD_THEME) {
bTheme *btheme, *new;