Menu

#27 Auto-choose SystemLookAndFeel

pending
None
5
2013-10-31
2013-05-02
No

Rather than having to specify the exact path of the LookAndFeel to be used for a form, which makes using the system LookAndFeel very difficult, it would be nice to be able to say SYSTEM or something like that, and have AntForm get the correct system LookAndFeel (using UIManager.getSystemLookAndFeelClassName()).

Discussion

  • Nathan Glenn

    Nathan Glenn - 2013-05-02

    Works if you add the following before line 144 in Control.java:

    if(lookAndFeel.equals("NATIVE"))
        lookAndFeel = UIManager.getSystemLookAndFeelClassName();
    
     
  • Patrick Martin

    Patrick Martin - 2013-10-31

    Commited in revision 202. Thanks for the patch!

     
  • Patrick Martin

    Patrick Martin - 2013-10-31
    • status: open --> pending
    • assigned_to: Patrick Martin
     

Log in to post a comment.