Fix access to debug page

Fix log sending
Fix side menu dismiss
This commit is contained in:
Christophe Deschamps 2024-08-15 07:07:26 +02:00
parent e8845e271d
commit 30aff646a3
3 changed files with 3 additions and 3 deletions

View file

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

View file

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

View file

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