From fee2c2c45207df99d6908059ec06b0d8b5ec272c Mon Sep 17 00:00:00 2001 From: oy Date: Thu, 4 Aug 2011 18:47:57 +0200 Subject: [PATCH] fixed an overlapping in the editor. Closes #794 --- src/game/editor/editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/editor/editor.cpp b/src/game/editor/editor.cpp index 54f09bca5..889cafddc 100644 --- a/src/game/editor/editor.cpp +++ b/src/game/editor/editor.cpp @@ -2056,7 +2056,7 @@ void CEditor::RenderLayers(CUIRect ToolBox, CUIRect ToolBar, CUIRect View) static int s_GroupPopupId = 0; if(Result == 2) - UiInvokePopupMenu(&s_GroupPopupId, 0, UI()->MouseX(), UI()->MouseY(), 120, 220, PopupGroup); + UiInvokePopupMenu(&s_GroupPopupId, 0, UI()->MouseX(), UI()->MouseY(), 145, 220, PopupGroup); if(m_Map.m_lGroups[g]->m_lLayers.size() && Input()->MouseDoubleClick()) m_Map.m_lGroups[g]->m_Collapse ^= 1;