We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9168d0 commit e5253c1Copy full SHA for e5253c1
CHANGELOG.md
@@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.
3
4
## [0.16.10]
5
6
+### Fixed
7
+- Fixed payment selection ActionBar title
8
+
9
### Changed
10
- Send cart again after checkout abort
11
ui/src/main/java/io/snabble/sdk/ui/checkout/PaymentMethodView.java
@@ -343,6 +343,10 @@ public void click() {
343
}
344
});
345
346
+ if (SnabbleUI.getActionBar() != null) {
347
+ SnabbleUI.getActionBar().setTitle(R.string.Snabble_PaymentSelection_title);
348
+ }
349
350
alertDialog.show();
351
alertDialog.getWindow().setGravity(Gravity.BOTTOM);
352
0 commit comments