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:
Diffstat (limited to 'source/blender/src/header_image.c')
-rw-r--r--source/blender/src/header_image.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/src/header_image.c b/source/blender/src/header_image.c
index 93dd39ef79c..3a29dbbf1b4 100644
--- a/source/blender/src/header_image.c
+++ b/source/blender/src/header_image.c
@@ -352,9 +352,6 @@ void do_image_buttons(unsigned short event)
}
}
-/* This should not be a stack var! */
-// static int headerbuttons_packdummy;
-
static void do_image_viewmenu(void *arg, int event)
{
@@ -918,7 +915,10 @@ void image_buttons(void)
uiBlock *block;
short xco, xmax;
char naam[256];
- int headerbuttons_packdummy = 0;
+ /* This should not be a static var */
+ static int headerbuttons_packdummy;
+
+ headerbuttons_packdummy = 0;
sprintf(naam, "header %d", curarea->headwin);
block= uiNewBlock(&curarea->uiblocks, naam, UI_EMBOSS, UI_HELV, curarea->headwin);