Method: javaxjavax::swing::JFrame#bring_to_front
- Defined in:
- lib/simple_gui_creator/jframe_helper_methods.rb
#bring_to_front ⇒ Object
kludgey…but said to work for swing frames…
80 81 82 83 84 85 86 |
# File 'lib/simple_gui_creator/jframe_helper_methods.rb', line 80 def bring_to_front # kludgey...but said to work for swing frames... java.awt.EventQueue.invokeLater{ unminimize toFront repaint } end |