Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. # uncomment to set the default look and feel to GTK
  2. swing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel
  3.  
  4. for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
  5. if ("com.sun.java.swing.plaf.gtk.GTKLookAndFeel".equals(info.getClassName())) {
  6. javax.swing.UIManager.setLookAndFeel(info.getClassName());
  7. break;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement