fix(ui): remove tabs!!!

This commit is contained in:
Ronan Abhamon 2017-06-07 09:35:02 +02:00
parent e059e36d87
commit 63230fc052
2 changed files with 9 additions and 9 deletions

View file

@ -17,6 +17,6 @@ QtObject {
property QtObject message: QtObject { property QtObject message: QtObject {
property color color: Colors.h property color color: Colors.h
property int fontSize: 10 property int fontSize: 10
property real topPadding: 10 property int topPadding: 10
} }
} }

View file

@ -25,7 +25,7 @@ Window {
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
function _exit (cb) { function _exit (cb) {
incall.showNormal() incall.showNormal()
incall.close() incall.close()
if (cb) { if (cb) {
@ -36,10 +36,10 @@ Window {
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
onVisibilityChanged: { onVisibilityChanged: {
if (sFullScreen && visibility === Window.Windowed) { if (sFullScreen && visibility === Window.Windowed) {
incall.showFullScreen() incall.showFullScreen()
sFullScreen = false sFullScreen = false
} }
} }
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
@ -57,9 +57,9 @@ Window {
focus: true focus: true
Keys.onEscapePressed: { Keys.onEscapePressed: {
incall.showNormal() incall.showNormal()
incall.close() incall.close()
} }
Loader { Loader {
anchors.fill: parent anchors.fill: parent