mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 23:06:39 +01:00
Allow reopen closed disputes
This commit is contained in:
parent
2e3c673997
commit
6d4d394395
1 changed files with 2 additions and 2 deletions
|
@ -265,8 +265,8 @@ public class TraderDisputeView extends ActivatableView<VBox, Void> {
|
|||
.onAction(() -> Utilities.copyToClipboard(message))
|
||||
.show();
|
||||
} else if (new KeyCodeCombination(KeyCode.U, KeyCombination.SHORTCUT_DOWN).match(event)) {
|
||||
// Hidden shortcut to re-open a dispute.
|
||||
if (selectedDispute != null && !disputeManager.isTrader(selectedDispute)) {
|
||||
// Hidden shortcut to re-open a dispute. Allow it also for traders not only arbitrator.
|
||||
if (selectedDispute != null) {
|
||||
if (selectedDisputeClosedPropertyListener != null)
|
||||
selectedDispute.isClosedProperty().removeListener(selectedDisputeClosedPropertyListener);
|
||||
selectedDispute.setIsClosed(false);
|
||||
|
|
Loading…
Add table
Reference in a new issue