From 88fb0b0141f999e1fb64e4d8dae0308a11360256 Mon Sep 17 00:00:00 2001 From: Yimura Date: Sun, 27 Dec 2020 00:48:36 +0100 Subject: [PATCH] fix(TabNetwork): Labels had the same idea causing conflicts when using these elements --- BigBaseV2/src/gui/tab_bar/tab_network.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BigBaseV2/src/gui/tab_bar/tab_network.cpp b/BigBaseV2/src/gui/tab_bar/tab_network.cpp index 6c05127c..508eb827 100644 --- a/BigBaseV2/src/gui/tab_bar/tab_network.cpp +++ b/BigBaseV2/src/gui/tab_bar/tab_network.cpp @@ -26,7 +26,8 @@ namespace big if (ImGui::Checkbox("Spoof Online Rank", g_settings.options["spoof_rank"].get())) g_settings.save(); - if (ImGui::InputInt("Spoof Online Rank", (PINT)g_settings.options["rank"].get(), 1, 50)) + + if (ImGui::InputInt(": Rank", (PINT)g_settings.options["rank"].get(), 1, 50)) g_settings.save(); ImGui::EndTabItem();