extra info is readonly in offer details window

This commit is contained in:
woodser 2025-05-20 08:05:37 -04:00
parent f8618df86f
commit 91edd50722
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF
2 changed files with 2 additions and 1 deletions

View file

@ -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);
}

View file

@ -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) {