You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/logbook/olog/ui/src/main/java/org/phoebus/logbook/olog/ui/write/LogEntryEditorController.java
+20-10Lines changed: 20 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -544,34 +544,40 @@ public LogTemplate fromString(String name) {
544
544
545
545
}
546
546
547
+
/**
548
+
* Sets up the context menu for the {@link TextArea}. While a {@link TextArea} comes with a default
549
+
* context menu containing the standard items (copy, paste...), the ability to access this context
550
+
* menu is not possible since Java9, see <a href="https://stackoverflow.com/questions/71053358/javafx-17-custom-textarea-textfield-right-click-menu">this post</a>.
551
+
* Any customization means the whole context menu must be built from scratch.
0 commit comments