From 0b8104a0cbb73f4c322019fcd3245f716bbc7fac Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Sun, 4 Jun 2023 09:45:35 +0200 Subject: [PATCH] echoMode is not an MobileForm.FormTextFieldDelegate enum, but a TextInput enum --- kcms/hotspot/ui/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kcms/hotspot/ui/main.qml b/kcms/hotspot/ui/main.qml index fec2dc09..04f7ee3b 100644 --- a/kcms/hotspot/ui/main.qml +++ b/kcms/hotspot/ui/main.qml @@ -74,7 +74,7 @@ SimpleKCM { MobileForm.FormTextFieldDelegate { label: i18n("Hotspot Password") enabled: !hotspotToggle.checked - echoMode: MobileForm.FormTextFieldDelegate.Password + echoMode: TextInput.Password text: PlasmaNM.Configuration.hotspotPassword onTextChanged: PlasmaNM.Configuration.hotspotPassword = text }