mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-02 11:46:11 -04:00
extra info is readonly in offer details window
This commit is contained in:
parent
f8618df86f
commit
91edd50722
2 changed files with 2 additions and 1 deletions
|
@ -316,6 +316,7 @@ public class OfferDetailsWindow extends Overlay<OfferDetailsWindow> {
|
|||
TextArea textArea = addConfirmationLabelTextArea(gridPane, ++rowIndex, Res.get("payment.shared.extraInfo"), "", 0).second;
|
||||
textArea.setText(offer.getCombinedExtraInfo().trim());
|
||||
textArea.setMaxHeight(200);
|
||||
textArea.setEditable(false);
|
||||
GUIUtil.adjustHeightAutomatically(textArea);
|
||||
}
|
||||
|
||||
|
|
|
@ -226,8 +226,8 @@ public class TradeDetailsWindow extends Overlay<TradeDetailsWindow> {
|
|||
TextArea textArea = addConfirmationLabelTextArea(gridPane, ++rowIndex, Res.get("payment.shared.extraInfo.offer"), "", 0).second;
|
||||
textArea.setText(offer.getCombinedExtraInfo().trim());
|
||||
textArea.setMaxHeight(200);
|
||||
GUIUtil.adjustHeightAutomatically(textArea);
|
||||
textArea.setEditable(false);
|
||||
GUIUtil.adjustHeightAutomatically(textArea);
|
||||
}
|
||||
|
||||
if (contract != null) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue