From 16f9dc43cbe2cf16e9cf8d3f336394fbe4abea44 Mon Sep 17 00:00:00 2001 From: Jakub Date: Tue, 29 Mar 2022 09:00:41 +0200 Subject: [PATCH] GODT-1534: Reset address when leaving split mode. --- internal/frontend/qml/AccountView.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/frontend/qml/AccountView.qml b/internal/frontend/qml/AccountView.qml index 33c63191..599eb957 100644 --- a/internal/frontend/qml/AccountView.qml +++ b/internal/frontend/qml/AccountView.qml @@ -163,6 +163,7 @@ Item { if (!splitMode.checked){ root.notifications.askEnableSplitMode(user) } else { + addressSelector.currentIndex = 0 root.user.toggleSplitMode(!splitMode.checked) } }