mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Add missing check to prevent re-selection of selected select-proposal-window that was just closed
This commit is contained in:
parent
781194c32f
commit
a16428e9c1
@ -587,7 +587,10 @@ public class ProposalsView extends ActivatableView<GridPane, Void> implements Bs
|
||||
break;
|
||||
}
|
||||
|
||||
if (selectedItem == null && listItems.size() > 0 && selectProposalWindow.isDisplayed()) {
|
||||
if (selectedItem == null &&
|
||||
listItems.size() > 0 &&
|
||||
selectProposalWindow.isDisplayed() &&
|
||||
!shownVoteOnProposalWindowForTxId.equals("")) {
|
||||
Proposal proposal = selectProposalWindow.getProposal();
|
||||
|
||||
Optional<ProposalsListItem> proposalsListItem = listItems.stream()
|
||||
|
Loading…
Reference in New Issue
Block a user