Viewing Issue Advanced Details

ID 0003753 Category [DMDirc] *Unsorted Severity minor
Reproducibility always Date Submitted 2010-02-09 00:23 Last Update 2010-03-06 21:32
Reporter Demented-Idiot Assigned To Greboid View Status public
Priority normal Status closed Resolution fixed
Platform Fixed in Version Target Version 0.6.3
Product Version Product Build
Summary 0003753: Addonbrowser tables have extra cell to the right
Description Addonbrowser tables have extra cell to the right
Needs unit test no
Upstream Bug URL

Relationships

Notes

(0009808)
Version Control (developer)
2010-02-09 19:48

A patchset (1) related to this change has been added to gerrit by Gregory Holmes

Remove grd lines from tables that are used as lines

Fixes issue 3753: Addonbrowser tables have extra cell to the right

Change-Id: I72dc6b97c949ec5272ab7d956e19b4684bfe0ab3
authorGregory Holmes <greg@dmdirc.com>2010-02-09 19:48:23 (GMT)
committer Chris Smith <chris@dmdirc.com>2010-02-09 20:01:58 (GMT)
commit128c0ba1320ef980fe4b5201d9958fdc6384b2d6 (patch) (side-by-side diff)
Remove grd lines from tables that are used as lines
Fixes issue 3753: Addonbrowser tables have extra cell to the right Change-Id: I72dc6b97c949ec5272ab7d956e19b4684bfe0ab3 Reviewed-on: http://gerrit.dmdirc.com/874 Automatic-Compile: DMDirc Local Commits <dmdirc@googlemail.com> Reviewed-by: Chris Smith <chris@dmdirc.com>
-rw-r--r--src/com/dmdirc/addons/ui_swing/components/addonbrowser/BrowserWindow.java1
-rw-r--r--src/com/dmdirc/addons/ui_swing/dialogs/channelsetting/TopicHistoryPane.java1
2 files changed, 2 insertions, 0 deletions
Click to Expand/Collapse
diff src/com/dmdirc/addons/ui_swing/components/addonbrowser/BrowserWindow.java
@@ -156,6 +156,7 @@ public class BrowserWindow extends JDialog implements ActionListener {
nameButton.getModel(), ratingButton.getModel(),
statusButton.getModel(), filter);
list.setRowSorter(sorter);
+ list.setShowGrid(false);
try {
loadData();
Click to Expand/Collapse
diff src/com/dmdirc/addons/ui_swing/dialogs/channelsetting/TopicHistoryPane.java
@@ -79,6 +79,7 @@ public class TopicHistoryPane extends JPanel implements ListSelectionListener {
topicHistory.getModel().addRow(new Object[]{new TopicLabel(channel, topic),});
}
topicHistory.getSelectionModel().setSelectionInterval(0, 0);
+ topicHistory.setShowGrid(false);
setLayout(new MigLayout("fill, ins 0"));
add(scrollPane, "hmin 50, hmax 200, wmax 450");

Issue History

Date Modified Username Field Change
2010-02-09 00:23 Demented-Idiot New Issue
2010-02-09 00:23 Demented-Idiot Status new => assigned
2010-02-09 00:23 Demented-Idiot Assigned To => Greboid
2010-02-09 19:48 Version Control Checkin
2010-02-09 19:48 Version Control Note Added: 0009808
2010-02-09 19:48 Version Control Status assigned => fix pending
2010-02-09 20:02 Greboid Checkin
2010-02-09 20:02 Greboid Note Added: 0009812
2010-02-09 20:02 Greboid Status fix pending => resolved
2010-02-09 20:02 Greboid Resolution open => fixed
2010-03-06 21:32 Greboid Status resolved => closed