Commit 63230fc0 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(ui): remove tabs!!!

parent e059e36d
...@@ -17,6 +17,6 @@ QtObject { ...@@ -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
} }
} }
...@@ -25,7 +25,7 @@ Window { ...@@ -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 { ...@@ -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 { ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment