Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
### Changed
### Removed
ui: Remove ProductConfirmationDialog (APPS-2411)
ui: Fix multiple cancellation events in RoutingTargetGateKeeperView (APPS-2441)
### Fixed

## [0.80.17]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import io.snabble.sdk.ui.scanner.BarcodeView
import io.snabble.sdk.ui.utils.I18nUtils
import io.snabble.sdk.ui.utils.UIUtils
import io.snabble.sdk.ui.utils.observeView
import io.snabble.sdk.ui.utils.setOneShotClickListener
import io.snabble.sdk.ui.utils.setTextOrHide
import io.snabble.sdk.utils.Logger
import kotlin.math.roundToInt
Expand Down Expand Up @@ -57,7 +58,7 @@ class RoutingTargetGatekeeperView @JvmOverloads constructor(
helperImage = findViewById(R.id.helper_image)
upArrow = findViewById(R.id.arrow)

cancel.setOnClickListener {
cancel.setOneShotClickListener {
abort()
}

Expand Down