diff options
Diffstat (limited to 'core/src/UI/UI_MainWindow.cpp')
-rw-r--r-- | core/src/UI/UI_MainWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/UI/UI_MainWindow.cpp b/core/src/UI/UI_MainWindow.cpp index 18f6731..8131508 100644 --- a/core/src/UI/UI_MainWindow.cpp +++ b/core/src/UI/UI_MainWindow.cpp @@ -84,7 +84,7 @@ void ProjectTab_NoProject() ImGui::Spacing(); - if (ImGui::Button(ls->DialogConfirm.Get(), !dirNameIsValid || projectName.empty())) { + if (ImGui::Button(ls->Confirm.Get(), !dirNameIsValid || projectName.empty())) { ImGui::CloseCurrentPopup(); gs.SetCurrentProject(std::make_unique<Project>(std::move(dirPath), std::move(projectName))); @@ -97,7 +97,7 @@ void ProjectTab_NoProject() } ImGui::SameLine(); - if (ImGui::Button(ls->DialogCancel.Get())) { + if (ImGui::Button(ls->Cancel.Get())) { ImGui::CloseCurrentPopup(); } |