mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 03:18:07 +00:00
fix #LINQT-1912 meeting form left padding
fix #LINQT-1921 settings button in waiting room
This commit is contained in:
parent
11f3546ba6
commit
e55779d257
4 changed files with 10 additions and 6 deletions
|
|
@ -71,7 +71,7 @@ Control.ComboBox {
|
|||
}
|
||||
contentItem: RowLayout {
|
||||
anchors.fill: parent
|
||||
anchors.leftMargin: Math.round(10 * DefaultStyle.dp)
|
||||
anchors.leftMargin: mainItem.leftMargin
|
||||
anchors.rightMargin: indicImage.width + Math.round(10 * DefaultStyle.dp)
|
||||
spacing: Math.round(5 * DefaultStyle.dp)
|
||||
EffectImage {
|
||||
|
|
|
|||
|
|
@ -247,6 +247,7 @@ FocusScope {
|
|||
id: addParticipantsButton
|
||||
Layout.fillWidth: true
|
||||
Layout.preferredHeight: Math.round(30 * DefaultStyle.dp)
|
||||
leftPadding: 0
|
||||
background: Rectangle {
|
||||
anchors.fill: parent
|
||||
color: addParticipantsButton.hovered || addParticipantsButton.activeFocus ? DefaultStyle.grey_100 : "transparent"
|
||||
|
|
@ -321,6 +322,7 @@ FocusScope {
|
|||
text: qsTr("meeting_schedule_send_invitations_title")
|
||||
checked: mainItem.conferenceInfoGui.core.inviteEnabled
|
||||
onToggled: mainItem.conferenceInfoGui.core.inviteEnabled = checked
|
||||
leftPadding: 0
|
||||
}
|
||||
Item {
|
||||
Layout.fillHeight: true
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ RowLayout {
|
|||
id: mainItem
|
||||
property alias localVideoEnabled: preview.videoEnabled
|
||||
property bool microEnabled: true
|
||||
property bool settingsButtonChecked: settingsButton.checked
|
||||
property alias settingsButtonChecked: settingsButton.checked
|
||||
property ConferenceInfoGui conferenceInfo
|
||||
signal joinConfRequested(string uri)
|
||||
signal cancelJoiningRequested()
|
||||
|
|
|
|||
|
|
@ -1068,10 +1068,12 @@ AbstractWindow {
|
|||
Connections {
|
||||
target: rightPanel
|
||||
function onVisibleChanged() {
|
||||
if (!visible)
|
||||
if (!rightPanel.visible) {
|
||||
console.log("unceck settings button")
|
||||
waitingRoomIn.settingsButtonChecked = false
|
||||
}
|
||||
}
|
||||
}
|
||||
Connections {
|
||||
target: mainWindow
|
||||
function onSetUpConferenceRequested(conferenceInfo) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue