Fix access to debug page
Fix log sending Fix side menu dismiss
This commit is contained in:
parent
e8845e271d
commit
30aff646a3
3 changed files with 3 additions and 3 deletions
|
|
@ -51,7 +51,7 @@ Item {
|
||||||
mainStackView.push(component)
|
mainStackView.push(component)
|
||||||
mainItem.contextualMenuOpenedComponent = component
|
mainItem.contextualMenuOpenedComponent = component
|
||||||
}
|
}
|
||||||
settingsButton.popup.close()
|
settingsMenuButton.popup.close()
|
||||||
}
|
}
|
||||||
|
|
||||||
function closeContextualMenuComponent() {
|
function closeContextualMenuComponent() {
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@ AbstractDetailsLayout {
|
||||||
}
|
}
|
||||||
Connections {
|
Connections {
|
||||||
target: SettingsCpp
|
target: SettingsCpp
|
||||||
function onLogsUploadTerminated() {
|
function onLogsUploadTerminated(status, url) {
|
||||||
UtilsCpp.getMainWindow().closeLoadingPopup()
|
UtilsCpp.getMainWindow().closeLoadingPopup()
|
||||||
if (status) {
|
if (status) {
|
||||||
mainItem.logsUrl = url
|
mainItem.logsUrl = url
|
||||||
|
|
|
||||||
|
|
@ -117,7 +117,7 @@ AbstractMainPage {
|
||||||
title: qsTr("Dépannage")
|
title: qsTr("Dépannage")
|
||||||
onClicked: {
|
onClicked: {
|
||||||
rightPanelStackView.clear()
|
rightPanelStackView.clear()
|
||||||
rightPanelStackView.push("qrc:/Linphone/view/App/Layout/Settings/DebugSettingsLayout.qml", { titleText: troubleShooting.title })
|
rightPanelStackView.push("qrc:/Linphone/view/App/Layout/Settings/DebugSettingsLayout.qml", { titleText: troubleShooting.title, container: rightPanelStackView })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Item {
|
Item {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue