Frage

It looks like Werner Randelshofer's fine Quaqua Look-and-feel for Java Swing over Mac OS X has been orphaned for Mavericks. Is there any alternative or forked effort to continue updates, especially for the JFileChooser replacement?

War es hilfreich?

Lösung

There is a fork of the project which does support Mavericks: https://github.com/karlvr/Quaqua

By "support", I simply mean that it doesn't explode when you try to use it. The file chooser does work. Most other custom UIs still work, but (AFAIK) have not been updated at all.

Andere Tipps

i had some problems with the JFileChooser following solves my problems:

Add a Thread.sleep(500) before you call JFilerChooser.showOpenDialog

    try {
        Thread.sleep(500);
    }
    catch(Exception e) {

    }
    if (o_JFileChooser.showOpenDialog(null) == JFileChooser.APPROVE_OPTION) {

.....

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top