improve label cell performance by avoiding clipboard retrieval

This commit is contained in:
Craig Raw 2022-02-01 10:08:58 +02:00
parent 1eb595823b
commit 77fde3cda9

View file

@ -92,8 +92,6 @@ class LabelCell extends TextFieldTreeTableCell<Entry, String> {
}); });
getItems().add(copyLabel); getItems().add(copyLabel);
Object content = Clipboard.getSystemClipboard().getContent(DataFormat.PLAIN_TEXT);
if(content instanceof String) {
MenuItem pasteLabel = new MenuItem("Paste Label"); MenuItem pasteLabel = new MenuItem("Paste Label");
pasteLabel.setOnAction(AE -> { pasteLabel.setOnAction(AE -> {
hide(); hide();
@ -106,4 +104,3 @@ class LabelCell extends TextFieldTreeTableCell<Entry, String> {
} }
} }
} }
}