mirror of
https://github.com/retoaccess1/haveno-reto.git
synced 2024-11-10 13:13:36 +01:00
Signed Offers view only appears for arbitrator
This commit is contained in:
parent
d6122020f2
commit
d0a6646bcd
@ -163,10 +163,17 @@ public class SupportView extends ActivatableView<TabPane, Void> {
|
||||
// In case a arbitrator has become inactive he still might get disputes from pending trades
|
||||
boolean hasDisputesAsArbitrator = arbitrationManager.getDisputesAsObservableList().stream()
|
||||
.anyMatch(d -> d.getAgentPubKeyRing().equals(myPubKeyRing));
|
||||
if (arbitratorTab == null && (isActiveArbitrator || hasDisputesAsArbitrator)) {
|
||||
arbitratorTab = new Tab();
|
||||
arbitratorTab.setClosable(false);
|
||||
root.getTabs().add(arbitratorTab);
|
||||
if (isActiveArbitrator || hasDisputesAsArbitrator) {
|
||||
if (arbitratorTab == null) {
|
||||
arbitratorTab = new Tab();
|
||||
arbitratorTab.setClosable(false);
|
||||
root.getTabs().add(arbitratorTab);
|
||||
}
|
||||
if (signedOfferTab == null) {
|
||||
signedOfferTab = new Tab();
|
||||
signedOfferTab.setClosable(false);
|
||||
root.getTabs().add(signedOfferTab);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -183,12 +190,6 @@ public class SupportView extends ActivatableView<TabPane, Void> {
|
||||
}
|
||||
}
|
||||
|
||||
if (signedOfferTab == null) {
|
||||
signedOfferTab = new Tab();
|
||||
signedOfferTab.setClosable(false);
|
||||
root.getTabs().add(signedOfferTab);
|
||||
}
|
||||
|
||||
boolean isActiveRefundAgent = refundAgentManager.getObservableMap().values().stream()
|
||||
.anyMatch(e -> e.getPubKeyRing() != null && e.getPubKeyRing().equals(myPubKeyRing));
|
||||
if (refundAgentTab == null) {
|
||||
|
Loading…
Reference in New Issue
Block a user