This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 249920 - [dark][nimbus] Table Cell Renderer uses a dark foreground color
Summary: [dark][nimbus] Table Cell Renderer uses a dark foreground color
Status: NEW
Alias: None
Product: platform
Classification: Unclassified
Component: Window System (show other bugs)
Version: 8.0
Hardware: All All
: P4 normal (vote)
Assignee: Stanislav Aubrecht
URL:
Keywords: L&F, SIMPLEFIX
Depends on:
Blocks:
 
Reported: 2015-01-21 08:35 UTC by lkishalmi
Modified: 2015-01-21 08:36 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description lkishalmi 2015-01-21 08:35:09 UTC
It seems that table foreground color is set exactly to something dark in original Nimbus, it causes that normal tables with no color annotated html rendered elements are displayed dark on a dark background. (Like Subversion Update Table, see: issue #249912)

Adding the following code to the DarkNimbusTheme.java solves these problems.

UIManager.put( "Table.textForeground", caretForeground); //NOI18N
Comment 1 lkishalmi 2015-01-21 08:36:21 UTC
Shall I create a patch file for such a simple fix?