Skip to content

Commit 2ed150d

Browse files
committed
fixed visibility of rating view
1 parent cf1a603 commit 2ed150d

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [0.62.4]
5+
6+
### Fixed
7+
- Visibility of rating layout
8+
49
## [0.62.3]
510

611
### Changes

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
}
3232

3333
project.ext {
34-
sdkVersion='0.62.3'
34+
sdkVersion='0.62.4'
3535
versionCode=1
3636

3737
compileSdkVersion=31

ui/src/main/java/io/snabble/sdk/ui/checkout/PaymentStatusView.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class PaymentStatusView @JvmOverloads constructor(
4646
private val rating1 = findViewById<ImageView>(R.id.rating_1)
4747
private val rating2 = findViewById<ImageView>(R.id.rating_2)
4848
private val rating3 = findViewById<ImageView>(R.id.rating_3)
49-
private val ratingLayout = findViewById<ImageView>(R.id.image)
49+
private val ratingLayout = findViewById<View>(R.id.rating_layout)
5050
private val inputBadRatingLayout = findViewById<TextInputLayout>(R.id.input_bad_rating_layout)
5151
private var addIbanLayout = findViewById<LinearLayout>(R.id.add_iban_layout)
5252
private var addIbanButton = findViewById<Button>(R.id.add_iban_button)

0 commit comments

Comments
 (0)