mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
added maximum zoom level in the editor. Closes #664
This commit is contained in:
parent
ca6e129da6
commit
193fb192c5
|
@ -744,8 +744,7 @@ void CEditor::DoToolbar(CUIRect ToolBar)
|
||||||
if(Input()->KeyPresses(KEY_MOUSE_WHEEL_DOWN) && m_Dialog == DIALOG_NONE)
|
if(Input()->KeyPresses(KEY_MOUSE_WHEEL_DOWN) && m_Dialog == DIALOG_NONE)
|
||||||
m_ZoomLevel += 20;
|
m_ZoomLevel += 20;
|
||||||
|
|
||||||
if(m_ZoomLevel < 50)
|
m_ZoomLevel = clamp(m_ZoomLevel, 50, 2000);
|
||||||
m_ZoomLevel = 50;
|
|
||||||
m_WorldZoom = m_ZoomLevel/100.0f;
|
m_WorldZoom = m_ZoomLevel/100.0f;
|
||||||
|
|
||||||
TB_Top.VSplitLeft(10.0f, &Button, &TB_Top);
|
TB_Top.VSplitLeft(10.0f, &Button, &TB_Top);
|
||||||
|
|
Loading…
Reference in a new issue