mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Hide conference and chats in main menu if deactivated
This commit is contained in:
parent
87118d2c88
commit
6d6db67f1d
1 changed files with 3 additions and 1 deletions
|
|
@ -261,7 +261,7 @@ ApplicationWindow {
|
|||
backgroundRadius: 4
|
||||
colorSet: MainWindowStyle.buttons.newConference
|
||||
visible: SettingsModel.conferenceEnabled
|
||||
enabled: SettingsModel.videoConferenceEnabled
|
||||
enabled: SettingsModel.videoConferenceEnabled
|
||||
tooltipText:qsTr('newConferenceButton')
|
||||
onClicked: {
|
||||
window.detachVirtualWindow()
|
||||
|
|
@ -344,6 +344,7 @@ ApplicationWindow {
|
|||
}
|
||||
}
|
||||
ActionButton {
|
||||
visible: SettingsModel.standardChatEnabled || SettingsModel.secureChatEnabled
|
||||
isCustom: true
|
||||
backgroundRadius: 4
|
||||
colorSet: MainWindowStyle.buttons.chatMenu
|
||||
|
|
@ -375,6 +376,7 @@ ApplicationWindow {
|
|||
}
|
||||
}
|
||||
ActionButton {
|
||||
visible: SettingsModel.conferenceEnabled
|
||||
isCustom: true
|
||||
backgroundRadius: 4
|
||||
colorSet: MainWindowStyle.buttons.meetingsMenu
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue