Insubstantial / insubstantial

Swing look-and-feel library and assorted widgets
193 stars 58 forks source link

Allow per-frame disable of auto-inactivate #61

Closed shemnon closed 12 years ago

shemnon commented 12 years ago

In Substance 7.0 the auto-inactivate feature of windows was global. This also needs to be disableable per window in addition to globally.

To set this per-window, set the property SubstanceLookAndFeel.WINDOW_AUTO_DEACTIVATE to false in the JRootPane of the affected frame.

c.getRootPane().putClientProperty(SubstanceLookAndFeel.WINDOW_AUTO_DEACTIVATE, false);

Samples have been added to the Check demo for the root pane and also for the desktop sample.