mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-18 05:58:19 +00:00
fix click drag navigation selecting quads/sounds
This commit is contained in:
parent
c573427609
commit
2e77c4bd59
|
@ -3164,7 +3164,7 @@ void CEditor::DoMapEditor(CUIRect View)
|
||||||
MapView()->MapGrid()->OnRender(View);
|
MapView()->MapGrid()->OnRender(View);
|
||||||
}
|
}
|
||||||
|
|
||||||
const bool ShouldPan = (Input()->ModifierIsPressed() && Ui()->MouseButton(0)) || Ui()->MouseButton(2);
|
const bool ShouldPan = Ui()->HotItem() == &m_MapEditorId && ((Input()->ModifierIsPressed() && Ui()->MouseButton(0)) || Ui()->MouseButton(2));
|
||||||
if(m_pContainerPanned == &m_MapEditorId)
|
if(m_pContainerPanned == &m_MapEditorId)
|
||||||
{
|
{
|
||||||
// do panning
|
// do panning
|
||||||
|
@ -3174,6 +3174,7 @@ void CEditor::DoMapEditor(CUIRect View)
|
||||||
s_Operation = OP_PAN_EDITOR;
|
s_Operation = OP_PAN_EDITOR;
|
||||||
else
|
else
|
||||||
s_Operation = OP_PAN_WORLD;
|
s_Operation = OP_PAN_WORLD;
|
||||||
|
Ui()->SetActiveItem(&m_MapEditorId);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
s_Operation = OP_NONE;
|
s_Operation = OP_NONE;
|
||||||
|
@ -3563,7 +3564,7 @@ void CEditor::DoMapEditor(CUIRect View)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(Ui()->CheckActiveItem(&m_MapEditorId))
|
if(Ui()->CheckActiveItem(&m_MapEditorId) && m_pContainerPanned == nullptr)
|
||||||
{
|
{
|
||||||
// release mouse
|
// release mouse
|
||||||
if(!Ui()->MouseButton(0))
|
if(!Ui()->MouseButton(0))
|
||||||
|
@ -3593,7 +3594,7 @@ void CEditor::DoMapEditor(CUIRect View)
|
||||||
MapView()->OffsetWorld({0, PanSpeed * m_MouseWorldScale});
|
MapView()->OffsetWorld({0, PanSpeed * m_MouseWorldScale});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(Ui()->CheckActiveItem(&m_MapEditorId))
|
else if(Ui()->CheckActiveItem(&m_MapEditorId) && m_pContainerPanned == nullptr)
|
||||||
{
|
{
|
||||||
// release mouse
|
// release mouse
|
||||||
if(!Ui()->MouseButton(0))
|
if(!Ui()->MouseButton(0))
|
||||||
|
|
Loading…
Reference in a new issue