diff options
author | rtk0c <[email protected]> | 2022-11-27 12:04:31 -0800 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-11-27 12:04:31 -0800 |
commit | 182c8f8357739f905bbd721006480502435b6b43 (patch) | |
tree | 082613a474d863182e2ad8f2167f1643f26e67a3 /app/source/Cplt/UI/UI_MainWindow.cpp | |
parent | b01ed99a1cd0c863c8709930658513c04dd70f61 (diff) |
Update brace style to match rest of my projectscplt-imgui
Diffstat (limited to 'app/source/Cplt/UI/UI_MainWindow.cpp')
-rw-r--r-- | app/source/Cplt/UI/UI_MainWindow.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/app/source/Cplt/UI/UI_MainWindow.cpp b/app/source/Cplt/UI/UI_MainWindow.cpp index 4653f79..c1c9dfc 100644 --- a/app/source/Cplt/UI/UI_MainWindow.cpp +++ b/app/source/Cplt/UI/UI_MainWindow.cpp @@ -14,8 +14,7 @@ namespace fs = std::filesystem; namespace CPLT_UNITY_ID { -void ProjectTab_Normal() -{ +void ProjectTab_Normal() { auto& gs = GlobalStates::GetInstance(); if (ImGui::Button(ICON_FA_TIMES " " I18N_TEXT("Close", L10N_CLOSE))) { @@ -31,8 +30,7 @@ void ProjectTab_Normal() ImGui::Text("%s %s", I18N_TEXT("Project path", L10N_PROJECT_PATH), gs.GetCurrentProject()->GetPathString().c_str()); } -void ProjectTab_NoProject() -{ +void ProjectTab_NoProject() { auto& gs = GlobalStates::GetInstance(); bool openedDummy = true; @@ -183,8 +181,7 @@ void ProjectTab_NoProject() } } // namespace CPLT_UNITY_ID -void UI::MainWindow() -{ +void UI::MainWindow() { auto& gs = GlobalStates::GetInstance(); auto windowSize = ImGui::GetMainViewport()->Size; |