Changeset 3022 in josm for trunk/src/org
- Timestamp:
- 2010-02-19T11:19:33+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/TagCellRenderer.java
r2990 r3022 75 75 76 76 /** 77 * renders the background color.78 *79 * @param tagModel the tag model80 * @param model the tag editor model81 */82 protected void renderBackgroundColor(TagModel tagModel, TagEditorModel model) {83 setBackground(UIManager.getColor("Table.background")); // standard color84 }85 86 /**87 77 * replies the cell renderer component for a specific cell 88 78 * … … 106 96 setForeground(UIManager.getColor("Table.selectionForeground")); 107 97 } else { 108 renderBackgroundColor(getModel(table).get(rowIndex), getModel(table)); 98 setBackground(UIManager.getColor("Table.background")); // standard color 99 setForeground(UIManager.getColor("Table.foreground")); 109 100 } 110 101
Note:
See TracChangeset
for help on using the changeset viewer.