From 884e0a4216e3912abd4b4159ffdf589d725e8a28 Mon Sep 17 00:00:00 2001 From: Yari Polla Date: Wed, 1 Mar 2023 13:44:45 +0100 Subject: [PATCH] remove default status --- quicksettings/hotspot/contents/ui/main.qml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/quicksettings/hotspot/contents/ui/main.qml b/quicksettings/hotspot/contents/ui/main.qml index 6c9e3279..d5e4c648 100644 --- a/quicksettings/hotspot/contents/ui/main.qml +++ b/quicksettings/hotspot/contents/ui/main.qml @@ -9,8 +9,6 @@ import org.kde.plasma.private.mobileshell 1.0 as MobileShell MobileShell.QuickSetting { id: root - readonly property string defaultStatus: i18n("Tap to enable hotspot") - PlasmaNM.Handler { id: nmHandler } @@ -19,7 +17,6 @@ MobileShell.QuickSetting { icon: "network-wireless-hotspot" enabled: false - status: defaultStatus function toggle() { if (!enabled) { @@ -34,12 +31,10 @@ MobileShell.QuickSetting { function onHotspotCreated() { root.enabled = true; - root.status = ""; } function onHotspotDisabled() { root.enabled = false; - root.status = defaultStatus; } }