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:
authorRob Haarsma <phaseIV@zonnet.nl>2004-01-13 17:50:45 +0300
committerRob Haarsma <phaseIV@zonnet.nl>2004-01-13 17:50:45 +0300
commit4a8f52f61983f33714cdd57d0064a4df208357b1 (patch)
tree96677fd6134ae92074fca3f43ea64f32ca39b820 /source/blender/src/drawimage.c
parentd74da9789a2124f1a8a3cf6f8f9070b127dff73d (diff)
Converted the Userpreference buttons to zr's new ButBit calls.
Also added USER_* to each define located in DNA_userdef.h.
Diffstat (limited to 'source/blender/src/drawimage.c')
-rw-r--r--source/blender/src/drawimage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawimage.c b/source/blender/src/drawimage.c
index 9dd3bb37590..038bcb37159 100644
--- a/source/blender/src/drawimage.c
+++ b/source/blender/src/drawimage.c
@@ -553,7 +553,7 @@ void image_viewzoom(unsigned short event)
SpaceImage *sima= curarea->spacedata.first;
int width, height;
- if(U.uiflag & WHEELZOOMDIR) {
+ if(U.uiflag & USER_WHEELZOOMDIR) {
if (event==WHEELDOWNMOUSE || event == PADPLUSKEY) {
sima->zoom *= 2;
} else {