Skip to content

Commit cf14ff6

Browse files
Merge pull request #63 from EatSleepProgramRepeat/61-clicking-anywhere-in-the-artist-table-causes-issues
fixed ClickSearch for artists, updated version
2 parents 398b2ce + 7073623 commit cf14ff6

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/com/CDPrintable/ProgramWindow.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,8 @@ public static void clearIdList() {
408408
private void clickSearch(int row, int col, JTable table) {
409409
String typeOfTable = table.getColumnName(0);
410410
if (row < 0 || col < 0) return;
411+
if (typeOfTable.equals("Artist Name")) {return;}
412+
411413
if (col == 0 || col == 1) {
412414
setSearchStatus("Fetching Info...", "blue");
413415
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Application version.
22

33
# MAJOR MINOR PATCH
4-
version=1.10.8
4+
version=1.10.9

0 commit comments

Comments
 (0)