bulenkov / Darcula

Darcula Look and Feel
Apache License 2.0
723 stars 114 forks source link

Crash on Ubuntu 16.04 LTS with openJDK 8 #32

Closed Soarex16 closed 7 years ago

Soarex16 commented 7 years ago

Here is a crash log http://pastebin.com/ZHJaRvXE

Code example:


public static void main(String[] args) {
        try {
            UIManager.setLookAndFeel(new DarculaLaf());
        } catch (UnsupportedLookAndFeelException e) {
            e.printStackTrace();
        }
        LAFgui form = new LAFgui();
        form.setTitle("demo");
        form.pack();
        form.setVisible(true);
}
AlexFalappa commented 7 years ago

I have already reported this problem as #29 and user @LukBukkit found a workaround.

The real problem seems to be in the iconloader library (https://github.com/bulenkov/iconloader) by the same author.

Soarex16 commented 7 years ago

Okay, TNX)