From 211ecd1aa17e83411c591129b9e5e47f2d31ce6d Mon Sep 17 00:00:00 2001 From: Green Sky Date: Sat, 5 Oct 2024 17:50:02 +0200 Subject: [PATCH] fix typo thx nil --- src/stream_manager_ui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream_manager_ui.cpp b/src/stream_manager_ui.cpp index fd7db40e..9ff55c2a 100644 --- a/src/stream_manager_ui.cpp +++ b/src/stream_manager_ui.cpp @@ -17,7 +17,7 @@ void StreamManagerUI::render(void) { // TODO: drop all menu sep? //ImGui::Separator(); // os already exists (very hacky) if (ImGui::BeginMenu("ObjectStore")) { - if (ImGui::MenuItem("Stream Manger", nullptr, _show_window)) { + if (ImGui::MenuItem("Stream Manager", nullptr, _show_window)) { _show_window = !_show_window; } ImGui::EndMenu();