fix #LINQT-1912 meeting form left padding

fix #LINQT-1921 settings button in waiting room
This commit is contained in:
Gaelle Braud 2025-08-27 10:48:45 +02:00
parent 11f3546ba6
commit e55779d257
4 changed files with 10 additions and 6 deletions

View file

@ -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 {

View file

@ -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

View file

@ -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()

View file

@ -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) {