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.

View | Details | Raw Unified | Return to bug 249912
Collapse All | Expand All

(-)a/subversion/src/org/netbeans/modules/subversion/ui/update/UpdateResultsTable.java (-1 / +2 lines)
Lines 422-428 Link Here
422
            if (modelColumnIndex == 0) {
422
            if (modelColumnIndex == 0) {
423
                UpdateResultNode node = nodes[sorter.modelIndex(row)];
423
                UpdateResultNode node = nodes[sorter.modelIndex(row)];
424
                if (!isSelected) {
424
                if (!isSelected) {
425
                    value = "<html>" + node.getHtmlDisplayName(); // NOI18N
425
                    String htmlName = node.getHtmlDisplayName();
426
                    value = htmlName.startsWith("<font") ? "<html>" + htmlName : htmlName; // NOI18N
426
                }
427
                }
427
            }
428
            }
428
            if (modelColumnIndex == 2) {
429
            if (modelColumnIndex == 2) {

Return to bug 249912