Skip to content

Commit

Permalink
Added File->Save (was missing from menu bar, Ctrl+S was present)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCherno committed Jul 4, 2022
1 parent 6b75143 commit 9e4326c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Hazelnut/src/EditorLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,9 @@ namespace Hazel {
if (ImGui::MenuItem("Open...", "Ctrl+O"))
OpenScene();

if (ImGui::MenuItem("Save", "Ctrl+S"))
SaveScene();

if (ImGui::MenuItem("Save As...", "Ctrl+Shift+S"))
SaveSceneAs();

Expand Down

0 comments on commit 9e4326c

Please sign in to comment.