mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Prevent to open wrong info popup when it is your own offer
This commit is contained in:
parent
31b08618fd
commit
fdfcd06eab
@ -1052,6 +1052,7 @@ public class OfferBookView extends ActivatableViewAndModel<GridPane, OfferBookVi
|
||||
tableRow.setOnMousePressed(null);
|
||||
} else {
|
||||
button.setDefaultButton(false);
|
||||
if (!myOffer) {
|
||||
tableRow.setOnMousePressed(e -> {
|
||||
// ugly hack to get the icon clickable when deactivated
|
||||
if (!(e.getTarget() instanceof ImageView || e.getTarget() instanceof Canvas))
|
||||
@ -1059,6 +1060,7 @@ public class OfferBookView extends ActivatableViewAndModel<GridPane, OfferBookVi
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
String title;
|
||||
if (myOffer) {
|
||||
|
Loading…
Reference in New Issue
Block a user