summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/chat/qmlchat.cpp
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2014-09-30 15:31:16 +0200
committerAlex Blasche <alexander.blasche@digia.com>2014-10-05 11:23:56 +0200
commit794df271268648ef8d2fd5ef5359dfd6afba9f20 (patch)
treead6f9fb9794c6a5b2838bde3b0c859a5da86b8c4 /examples/bluetooth/chat/qmlchat.cpp
parenta6ca9d58ec4419d5cb3c83fb34de2f7726ac22a1 (diff)
Improve QML Chat example UI
This makes the example more compliant with general UI color guidelines and cuts out unnecessary code. Change-Id: I1cf7df602e586a667ebd052ed45baef8eafb6955 Reviewed-by: Sami Makkonen <sami.makkonen@digia.com> Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
Diffstat (limited to 'examples/bluetooth/chat/qmlchat.cpp')
-rw-r--r--examples/bluetooth/chat/qmlchat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bluetooth/chat/qmlchat.cpp b/examples/bluetooth/chat/qmlchat.cpp
index 3cd2424c..aefc900a 100644
--- a/examples/bluetooth/chat/qmlchat.cpp
+++ b/examples/bluetooth/chat/qmlchat.cpp
@@ -55,7 +55,7 @@ int main(int argc, char *argv[])
// Qt.quit() called in embedded .qml by default only emits
// quit() signal, so do this (optionally use Qt.exit()).
QObject::connect(view.engine(), SIGNAL(quit()), qApp, SLOT(quit()));
- view.setGeometry(QRect(100, 100, 360, 640));
+ view.setGeometry(QRect(100, 100, 360, 480));
view.show();
return application.exec();
}