JonathanGiles / scenic-view

Scenic View is a JavaFX application designed to make it simple to understand the current state of your application scenegraph, and to also easily manipulate properties of the scenegraph without having to keep editing your code. This lets you find bugs, and get things pixel perfect without having to do the compile-check-compile dance.
GNU General Public License v3.0
532 stars 69 forks source link

Selectable/copy+paste-able text in Details pane #83

Open bwoodsend opened 6 months ago

bwoodsend commented 6 months ago

I can't believe I'm the first person to want this.

The field values in the Details panel of the UI aren't selectable. If I want to copy one of the values (say a node's className) to clipboard so that I can paste it into my test code, I can't. Would you be willing to set whatever the JavaFX flags are for making a label selectable and copyable?

satsen commented 4 months ago

There is no flag to make a label selectable. The only built-in way is to use a TextField that is set to not editable, which is a bad user experience.