From f5e2669444428a0ac77867bceb66a25af090617d Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Tue, 1 Feb 2011 17:54:02 +0000 Subject: Icons in outliner were jittering a bit on sizing of the area. Subpixel position issue... when is this ever correct? :) --- source/blender/editors/interface/view2d.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/editors/interface/view2d.c') diff --git a/source/blender/editors/interface/view2d.c b/source/blender/editors/interface/view2d.c index 3c74c38dfb6..245905418ec 100644 --- a/source/blender/editors/interface/view2d.c +++ b/source/blender/editors/interface/view2d.c @@ -991,12 +991,12 @@ void UI_view2d_view_ortho(View2D *v2d) /* XXX ton: this flag set by outliner, for icons */ if(v2d->flag & V2D_PIXELOFS_X) { - curmasked.xmin= floor(curmasked.xmin) + 0.001f; - curmasked.xmax= floor(curmasked.xmax) + 0.001f; + curmasked.xmin= floor(curmasked.xmin) - 0.001f; + curmasked.xmax= floor(curmasked.xmax) - 0.001f; } if(v2d->flag & V2D_PIXELOFS_Y) { - curmasked.ymin= floor(curmasked.ymin) + 0.001f; - curmasked.ymax= floor(curmasked.ymax) + 0.001f; + curmasked.ymin= floor(curmasked.ymin) - 0.001f; + curmasked.ymax= floor(curmasked.ymax) - 0.001f; } /* set matrix on all appropriate axes */ -- cgit v1.2.3