Use a 2 pixel offset instead of 5 for the ShowImage context menu.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36806 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ryan Leavengood
2010-05-13 17:52:52 +00:00
parent f02862eb03
commit f0a376325c
+1 -1
View File
@@ -1789,7 +1789,7 @@ ShowImageView::_ShowPopUpMenu(BPoint screen)
if (showImage)
showImage->BuildContextMenu(menu);
screen += BPoint(5, 5);
screen += BPoint(2, 2);
menu->Go(screen, true, true, true);
fShowingPopUpMenu = true;
}