how can i make a `SwingPanel` adopt a speciifc Loo...
# compose-desktop
r
how can i make a
SwingPanel
adopt a speciifc Look and Feel? I tried using
UIManager
to set it, but it doesn’t appear to have any effect
k
It'd have to be done at the global level of the whole app. You can't mix-and-match different Swing look-and-feels in the same window.
It would be the call to
UIManager.setLookAndFeel(...)
in your
main()
function, right before creating the first
Window