mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-31 10:59:23 +00:00
fix(app): little fixes
This commit is contained in:
parent
7466db0d64
commit
170a87f898
3 changed files with 4 additions and 5 deletions
|
|
@ -1,5 +1,3 @@
|
|||
import QtQuick 2.7
|
||||
|
||||
import Linphone 1.0
|
||||
import Linphone.Styles 1.0
|
||||
|
||||
|
|
|
|||
|
|
@ -10,8 +10,9 @@ Item {
|
|||
property alias text: description.text
|
||||
|
||||
height: (!text && DialogStyle.description.verticalMargin) || undefined
|
||||
implicitHeight: (text && (description.implicitHeight + DialogStyle.description.verticalMargin * 2)) ||
|
||||
0
|
||||
implicitHeight: (text && (
|
||||
description.implicitHeight + DialogStyle.description.verticalMargin * 2
|
||||
)) || 0
|
||||
|
||||
Text {
|
||||
id: description
|
||||
|
|
|
|||
|
|
@ -167,7 +167,7 @@ ApplicationWindow {
|
|||
Loader {
|
||||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
source: 'qrc:/ui/Views/MainWindow/Conversation.qml'
|
||||
source: 'qrc:/ui/Views/MainWindow/Contacts.qml'
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue