src/main/java/org/apache/log4j/chainsaw/color/ColorPanel.java [362:376]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Vector backgroundColors = new Vector(RuleColorizer.getDefaultColors());
        Vector foregroundColors = new Vector(RuleColorizer.getDefaultColors());
        backgroundColors.add("Browse...");
        foregroundColors.add("Browse...");

        JComboBox background = new JComboBox(backgroundColors);
        background.setMaximumRowCount(15);
        background.setRenderer(new ColorListCellRenderer());

        JComboBox foreground = new JComboBox(foregroundColors);
        foreground.setMaximumRowCount(15);
        foreground.setRenderer(new ColorListCellRenderer());

        DefaultCellEditor backgroundEditor = new DefaultCellEditor(background);
        DefaultCellEditor foregroundEditor = new DefaultCellEditor(foreground);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/log4j/chainsaw/color/ColorPanel.java [400:414]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Vector backgroundColors = new Vector(RuleColorizer.getDefaultColors());
        Vector foregroundColors = new Vector(RuleColorizer.getDefaultColors());
        backgroundColors.add("Browse...");
        foregroundColors.add("Browse...");

        JComboBox background = new JComboBox(backgroundColors);
        background.setMaximumRowCount(15);
        background.setRenderer(new ColorListCellRenderer());

        JComboBox foreground = new JComboBox(foregroundColors);
        foreground.setMaximumRowCount(15);
        foreground.setRenderer(new ColorListCellRenderer());

        DefaultCellEditor backgroundEditor = new DefaultCellEditor(background);
        DefaultCellEditor foregroundEditor = new DefaultCellEditor(foreground);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



