remove mining fee from locked funds in MS for locked funds display

This commit is contained in:
Manfred Karrer 2016-04-06 11:53:41 +02:00
parent ae65561623
commit afe009b303
6 changed files with 8 additions and 6 deletions

View file

@ -253,7 +253,7 @@ public class LockedView extends ActivatableView<VBox, Void> {
details = "-";
}
field = new HyperlinkWithIcon(details + " (Locked in trade (MultiSig))",
field = new HyperlinkWithIcon("Locked in trade with ID: " + details + " (MultiSig)",
AwesomeIcon.INFO_SIGN);
field.setOnAction(event -> openDetailPopup(item));
field.setTooltip(new Tooltip("Open popup for details"));

View file

@ -252,7 +252,7 @@ public class ReservedView extends ActivatableView<VBox, Void> {
details = "-";
}
field = new HyperlinkWithIcon(details + " (Reserved in offer (local wallet))",
field = new HyperlinkWithIcon("Reserved in offer with ID: " + details + " (local wallet)",
AwesomeIcon.INFO_SIGN);
field.setOnAction(event -> openDetailPopup(item));
field.setTooltip(new Tooltip("Open popup for details"));