Merge pull request #189 from mniip/ctxm

ContextMenu position/overflow fix.
This commit is contained in:
Simon Robertshaw 2013-11-10 03:17:17 -08:00
commit 6331cf22c7

View File

@ -30,9 +30,14 @@ void ContextMenu::Show(ui::Point position)
} }
buttons.clear(); buttons.clear();
Position = position;
Size.Y = items.size()*16;
Size.X = 100; Size.X = 100;
Size.Y = items.size()*16-1;
if(position.X+Size.X > XRES+BARSIZE)
position.X -= std::min(position.X, Size.X);
if(position.Y+Size.Y > YRES+MENUSIZE)
position.Y -= std::min(position.Y, Size.Y);
Position = position;
int currentY = 1; int currentY = 1;
for(int i = 0; i < items.size(); i++) for(int i = 0; i < items.size(); i++)