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:
authorCampbell Barton <ideasman42@gmail.com>2013-04-19 04:37:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-19 04:37:30 +0400
commitf2f27bf8325432ec8995f16385c7d65ef975eee1 (patch)
treed583ead3932b84e4e645e313f4cb1e237d3b13a5 /source/blender/editors/screen/screen_ops.c
parent43998d6a383f6d6a8ae31ed8533235c226deda3f (diff)
style cleanup
Diffstat (limited to 'source/blender/editors/screen/screen_ops.c')
-rw-r--r--source/blender/editors/screen/screen_ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c
index 22dff8cd662..86e26bf0681 100644
--- a/source/blender/editors/screen/screen_ops.c
+++ b/source/blender/editors/screen/screen_ops.c
@@ -906,8 +906,8 @@ static int area_dupli_invoke(bContext *C, wmOperator *op, const wmEvent *event)
/* adds window to WM */
rect = sa->totrct;
BLI_rcti_translate(&rect, win->posx, win->posy);
- rect.xmax = rect.xmin + BLI_rcti_size_x(&rect)/U.pixelsize;
- rect.ymax = rect.ymin + BLI_rcti_size_y(&rect)/U.pixelsize;
+ rect.xmax = rect.xmin + BLI_rcti_size_x(&rect) / U.pixelsize;
+ rect.ymax = rect.ymin + BLI_rcti_size_y(&rect) / U.pixelsize;
newwin = WM_window_open(C, &rect);