Skip to content

Commit

Permalink
Render editor pressed keys and saving message behind file dialog
Browse files Browse the repository at this point in the history
The messages were previously rendered on top of the file dialog and popup menus.
  • Loading branch information
Robyt3 committed Jul 3, 2023
1 parent 35f8475 commit a4465ab
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/game/editor/editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6387,6 +6387,9 @@ void CEditor::Render()
}
}

RenderPressedKeys(View);
RenderSavingIndicator(View);

if(m_Dialog == DIALOG_FILE)
{
static int s_NullUiTarget = 0;
Expand Down Expand Up @@ -6421,8 +6424,6 @@ void CEditor::Render()
if(m_GuiActive)
RenderStatusbar(StatusBar);

RenderPressedKeys(View);
RenderSavingIndicator(View);
RenderMousePointer();
}

Expand Down

0 comments on commit a4465ab

Please sign in to comment.