diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2015-09-24 11:10:49 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2015-09-24 11:10:49 +0200 |
commit | 4fa375062d6ba14947923c01bffbf06ce91325bf (patch) | |
tree | 5459da425d66d29f5ba42b14945a9da0963be968 | |
parent | 5f865c41922965d87fa15f4589456bfed33c5e3d (diff) | |
download | kube-4fa375062d6ba14947923c01bffbf06ce91325bf.tar.gz kube-4fa375062d6ba14947923c01bffbf06ce91325bf.zip |
initial kmail-mobile ui
-rw-r--r-- | applications/kmail-mobile/main.qml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/applications/kmail-mobile/main.qml b/applications/kmail-mobile/main.qml new file mode 100644 index 00000000..3611b04a --- /dev/null +++ b/applications/kmail-mobile/main.qml | |||
@@ -0,0 +1,14 @@ | |||
1 | import QtQuick 2.4 | ||
2 | import QtQuick.Controls 1.3 | ||
3 | import QtQuick.Layouts 1.1 | ||
4 | |||
5 | ApplicationWindow { | ||
6 | id: app | ||
7 | |||
8 | //FIXME remove fixed pixel hight | ||
9 | //for now just convinience during testing | ||
10 | width: 1080 / 2.7 | ||
11 | height: (1920 - 40)/ 2.7 | ||
12 | |||
13 | visible: true | ||
14 | } \ No newline at end of file | ||