File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ ExitStatus App::Application::run() {
121
121
if (ImGui::BeginMenu (" View" )) {
122
122
ImGui::MenuItem (" Some Panel" , nullptr , &m_show_some_panel);
123
123
ImGui::MenuItem (" ImGui Demo Panel" , nullptr , &m_show_demo_panel);
124
- ImGui::MenuItem (" Debug Panel " , nullptr , &m_show_debug_panel);
124
+ ImGui::MenuItem (" Debug Panels " , nullptr , &m_show_debug_panel);
125
125
ImGui::EndMenu ();
126
126
}
127
127
@@ -142,7 +142,10 @@ ExitStatus App::Application::run() {
142
142
143
143
// Debug panel
144
144
if (m_show_debug_panel) {
145
- ImGui::Begin (" Debug panel" , &m_show_debug_panel);
145
+ ImGui::ShowMetricsWindow ();
146
+ ImGui::ShowDebugLogWindow ();
147
+
148
+ ImGui::Begin (" App debug panel" , &m_show_debug_panel);
146
149
ImGui::Text (" User config path: %s" , user_config_path.c_str ());
147
150
ImGui::Separator ();
148
151
ImGui::Text (" Font path: %s" , font_path.c_str ());
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ FetchContent_Declare(
11
11
FetchContent_Declare (
12
12
fmt
13
13
GIT_REPOSITORY "https://github.com/fmtlib/fmt.git"
14
- GIT_TAG 11.0.1
14
+ GIT_TAG 11.0.2
15
15
)
16
16
17
17
FetchContent_Declare (
@@ -23,13 +23,13 @@ FetchContent_Declare(
23
23
FetchContent_Declare (
24
24
imgui
25
25
GIT_REPOSITORY "https://github.com/ocornut/imgui.git"
26
- GIT_TAG 527b2c45af2f8964f95826bd16ab7c7ed372ae41 # Branch: docking, date: 02.07 .2024, 19:05 GMT+2
26
+ GIT_TAG 68aa9a86ec933510073932980a0940742ecc833c # Branch: docking, date: 10.09 .2024, 04:29 GMT+2
27
27
)
28
28
29
29
FetchContent_Declare (
30
30
SDL2
31
31
GIT_REPOSITORY "https://github.com/libsdl-org/SDL.git"
32
- GIT_TAG release-2.30.5
32
+ GIT_TAG release-2.30.7
33
33
)
34
34
35
35
FetchContent_Declare (
Original file line number Diff line number Diff line change 1
- FetchContent_GetProperties (imgui )
2
- if (NOT imgui_POPULATED )
3
- FetchContent_Populate (imgui )
4
- endif ()
1
+ FetchContent_MakeAvailable (imgui )
5
2
6
3
add_library (imgui
7
4
${imgui_SOURCE_DIR} /imgui.cpp ${imgui_SOURCE_DIR} /imgui.h
You can’t perform that action at this time.
0 commit comments