Domanda

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?

È stato utile?

Soluzione

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.

Altri suggerimenti

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) {

.....

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top