Issue 23: Progress bar enhancement
Status:  Fixed
Owner:
Closed:  Feb 2008
Project Member Reported by beast.ti...@gmail.com, Sep 26, 2007
Think of the way to make progress bar text label in table visible when
selected. 
Oct 2, 2007
Project Member #1 paranoid...@gmail.com
have suggestion:
class: org.tiberiumlabs.lailaps.gui.elements.ProgressTableCellRenderer
method: getTableCellRendererComponent(...)

if (isSelected) {
setStringPainted(false);

try it. may be there is some more options to change look of progress bar...


0 bytes   Download
Labels: Component-UI
Oct 4, 2007
Project Member #2 paranoid...@gmail.com
another suggestion:

        if (isSelected) {
            setForeground(DEFAULT_BACKGROUND);
            setBackground(DEFAULT_FOREGROUND);
            //setBackground(table.getSelectionForeground());
        } else {

this colors can be changed to another, but color text will be the same. but the row 
will filled with another than selection color, and that's ugly.
Feb 11, 2008
Project Member #3 paranoid...@gmail.com
(No comment was entered for this change.)
Status: Fixed