summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraavit <eirik.aavitsland@digia.com>2013-08-05 11:31:26 +0200
committerEirik Aavitsland <eirik.aavitsland@digia.com>2013-08-05 12:34:46 +0300
commitd571f4769863bfb8035ff9ab61a7fbd797ae0452 (patch)
tree9c484064bb3ab6a9004e900a87ef119e67c5d9db
parent805290d1a8e32e43c9646a17481df6f8fbe644dc (diff)
Changes to wifi example, matching latest wifi plugin
Change-Id: I0e6d4c1677393e44d06a0968cba33435aaa7b79b Reviewed-by: Eirik Aavitsland <eirik.aavitsland@digia.com>
-rw-r--r--experimental/Wifi/main.qml8
1 files changed, 5 insertions, 3 deletions
diff --git a/experimental/Wifi/main.qml b/experimental/Wifi/main.qml
index e01e6ee..5c7bed9 100644
--- a/experimental/Wifi/main.qml
+++ b/experimental/Wifi/main.qml
@@ -18,7 +18,8 @@ Rectangle
onOnlineChanged: print(online ? "QML: WifiManager is online" : "QML: WifiManager is not online...");
- scanning: ready && connectedSSID == "";
+ //scanning: ready && connectedSSID == "";
+ scanning: ready
}
Component {
@@ -82,7 +83,7 @@ Rectangle
anchors.margins: 20
anchors.right: parent.right
anchors.top: parent.top
- color: "white"
+ color: "lightblue"
border.color: "lightgray"
}
@@ -104,11 +105,12 @@ Rectangle
TextInput {
id: passwordInput
+ //echoMode: TextInput.PasswordEchoOnEdit
y: 100
width: 300
height: 50
anchors.horizontalCenter: parent.horizontalCenter
- font.pixelSize: 14
+ font.pixelSize: 18
}
Rectangle {