Eliale / seaglass

Automatically exported from code.google.com/p/seaglass
0 stars 0 forks source link

NPE in SeaglassRootPaneUI #59

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Minimize and maximize again sometimes throws an NPE

What is the expected output? What do you see instead?
No exception

The following will fix the problem: In the file 
com.seaglasslookandfeel.ui.SeaGlassRootPaneUI in lines 374 and 381
guard both root.repaint() calls with a null check like this:

if (root != null) {
  root.repaint();
}

Original issue reported on code.google.com by rosstaus...@googlemail.com on 9 Oct 2010 at 5:26

GoogleCodeExporter commented 8 years ago
Hi,
This is already fixed in the integration_rossi branch.

Have fun,
- Rossi

Original comment by rosstaus...@googlemail.com on 15 Feb 2011 at 7:11

GoogleCodeExporter commented 8 years ago
This issue is fixed in sealglass 0.2 that we just have released.
Please give this new version a try.

Have fun,
- Rossi

Original comment by rosstaus...@googlemail.com on 25 Jun 2012 at 8:44