summaryrefslogtreecommitdiffstats
path: root/basicsuite/launchersettings/WifiGroupBox.qml
diff options
context:
space:
mode:
Diffstat (limited to 'basicsuite/launchersettings/WifiGroupBox.qml')
-rw-r--r--basicsuite/launchersettings/WifiGroupBox.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/basicsuite/launchersettings/WifiGroupBox.qml b/basicsuite/launchersettings/WifiGroupBox.qml
index f58c129..e88f5cb 100644
--- a/basicsuite/launchersettings/WifiGroupBox.qml
+++ b/basicsuite/launchersettings/WifiGroupBox.qml
@@ -60,6 +60,8 @@ ColumnLayout {
Button {
id: wifiOnOffButton
+ Layout.fillWidth: true
+ style: root.buttonStyle
text: (wifiManager.backendReady) ? "Switch Off" : "Switch On"
onClicked: {
if (wifiManager.backendReady) {
@@ -74,6 +76,8 @@ ColumnLayout {
Button {
id: listNetworksButton
+ Layout.fillWidth: true
+ style: root.buttonStyle
visible: wifiManager.backendReady
text: (networkList.visible) ? "Hide wifi networks"
: "List available wifi networks"