diff options
| author | oy <Tom_Adams@web.de> | 2011-08-04 18:47:57 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-08-05 19:52:36 +0200 |
| commit | fee2c2c45207df99d6908059ec06b0d8b5ec272c (patch) | |
| tree | b24f3a1568b2912f25bd3c7aeb4b8bb6d6245682 /src/game/editor/editor.cpp | |
| parent | b7605dd0b531fec5e70635b5cbaf36cb29e96730 (diff) | |
| download | zcatch-fee2c2c45207df99d6908059ec06b0d8b5ec272c.tar.gz zcatch-fee2c2c45207df99d6908059ec06b0d8b5ec272c.zip | |
fixed an overlapping in the editor. Closes #794
Diffstat (limited to 'src/game/editor/editor.cpp')
| -rw-r--r-- | src/game/editor/editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/editor/editor.cpp b/src/game/editor/editor.cpp index 54f09bca..889cafdd 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; |