From efc39a564bf249ced36483679692d9842b9d0037 Mon Sep 17 00:00:00 2001 From: Lars Toenning Date: Fri, 15 Nov 2024 08:56:08 +0100 Subject: [PATCH] refactor(ui): Update plugin connection text --- src/gui/components/settingssimulatorcomponent.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/components/settingssimulatorcomponent.cpp b/src/gui/components/settingssimulatorcomponent.cpp index 9e4e5f1af..084ac5d47 100644 --- a/src/gui/components/settingssimulatorcomponent.cpp +++ b/src/gui/components/settingssimulatorcomponent.cpp @@ -382,12 +382,12 @@ namespace swift::gui::components if (!info.isUnspecified()) { m_pluginLoaded = true; - ui->lbl_PluginInfo->setText(info.getDescription()); + ui->lbl_PluginInfo->setText("Connected to: " % info.getName()); } else { m_pluginLoaded = false; - ui->lbl_PluginInfo->setText("No plugin loaded"); + ui->lbl_PluginInfo->setText("No connection to simulator"); } this->setGuiValues(); }