Skip to content

Commit e7c4130

Browse files
authored
Fix: Remove back navigation from CreateConfirm and CreateBackup (Fixes bitcoin-core#412)
- Removed back button and NavigationBar2 from CreateBackup.qml - Removed back signal from CreateBackup.qml - Removed unnecessary imports - Verified CreateConfirm.qml already had no back navigation - Maintained forward-only navigation flow with "Done" button This change ensures users follow a linear wallet creation process without the ability to navigate backwards, improving the flow consistency and user experience.
1 parent 765f608 commit e7c4130

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

Diff for: src/qml/pages/wallet/CreateBackup.qml

+1-13
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,9 @@ import "../settings"
1212

1313
Page {
1414
id: root
15-
signal back
1615
signal next
1716
background: null
1817

19-
header: NavigationBar2 {
20-
id: navbar
21-
leftItem: NavButton {
22-
iconSource: "image://images/caret-left"
23-
text: qsTr("Back")
24-
onClicked: {
25-
root.back()
26-
}
27-
}
28-
}
29-
3018
ColumnLayout {
3119
id: columnLayout
3220
width: Math.min(parent.width, 450)
@@ -89,4 +77,4 @@ Page {
8977
}
9078
}
9179
}
92-
}
80+
}

0 commit comments

Comments
 (0)