aboutsummaryrefslogtreecommitdiff
path: root/core/src/UI/UI_MainWindow.cpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2021-06-10 18:07:30 -0700
committerrtk0c <[email protected]>2021-06-10 18:07:30 -0700
commit222cfec6ad882196d8927f73e30d905daae89556 (patch)
tree9347bb0ebf99cc79e4ee629d0edf7fd744bdeb1b /core/src/UI/UI_MainWindow.cpp
parentdc09ba073744292a4d4af0445e5095f424fffa22 (diff)
Polish UI and add translations
Diffstat (limited to 'core/src/UI/UI_MainWindow.cpp')
-rw-r--r--core/src/UI/UI_MainWindow.cpp4
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();
}