mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-23 11:18:30 +00:00
fix(ui): remove tabs!!!
This commit is contained in:
parent
e059e36d87
commit
63230fc052
2 changed files with 9 additions and 9 deletions
|
|
@ -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 {
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
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
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue