From 35d50c91c78b066acd7b349cb6946a9350f62346 Mon Sep 17 00:00:00 2001 From: Starman0620 <28871190+Starman0620@users.noreply.github.com> Date: Mon, 19 Apr 2021 20:59:39 -0400 Subject: [PATCH] Adjusted Discord UI --- discord/src/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/discord/src/main.cpp b/discord/src/main.cpp index 79a87187..e490c119 100644 --- a/discord/src/main.cpp +++ b/discord/src/main.cpp @@ -39,16 +39,16 @@ public: private: static void menuHandler(void* ctx) { PresenceModule* _this = (PresenceModule*)ctx; - if(!_this->enabled) { style::beginDisabled(); } + if (!_this->enabled) { style::beginDisabled(); } float menuWidth = ImGui::GetContentRegionAvailWidth(); + + // GUI ImGui::BeginGroup(); - - ImGui::Text("Hello, SDR++ world! - Starman0620"); - + ImGui::Text("Connecting to Discord..."); ImGui::EndGroup(); - if(!_this->enabled) { style::endDisabled(); } + if (!_this->enabled) { style::endDisabled(); } } std::string name;