mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Fix delimiter used for combined fields copypaste.
This commit is contained in:
parent
74e1078318
commit
0b049d5a52
@ -58,21 +58,17 @@ public class TextFieldWithCopyIcon extends AnchorPane {
|
|||||||
copyIcon.setOnMouseClicked(e -> {
|
copyIcon.setOnMouseClicked(e -> {
|
||||||
String text = getText();
|
String text = getText();
|
||||||
if (text != null && text.length() > 0) {
|
if (text != null && text.length() > 0) {
|
||||||
String copyText;
|
String copyText = text;
|
||||||
if (copyWithoutCurrencyPostFix) {
|
if (copyWithoutCurrencyPostFix) {
|
||||||
String[] strings = text.split(" ");
|
String[] strings = text.split(" ");
|
||||||
if (strings.length > 1)
|
if (strings.length > 1) {
|
||||||
copyText = strings[0]; // exclude the BTC postfix
|
copyText = strings[0]; // exclude the BTC postfix
|
||||||
else
|
}
|
||||||
copyText = text;
|
|
||||||
} else if (copyTextAfterDelimiter) {
|
} else if (copyTextAfterDelimiter) {
|
||||||
String[] strings = text.split(" ");
|
String[] strings = text.split("/");
|
||||||
if (strings.length > 1)
|
if (strings.length == 2) {
|
||||||
copyText = strings[2]; // exclude the part before / (slash included)
|
copyText = strings[1].stripLeading(); // exclude the part before / (slash included)
|
||||||
else
|
}
|
||||||
copyText = text;
|
|
||||||
} else {
|
|
||||||
copyText = text;
|
|
||||||
}
|
}
|
||||||
Utilities.copyToClipboard(copyText);
|
Utilities.copyToClipboard(copyText);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user