From 70736239f88d78bb981efee0d0899d58ada2a22e Mon Sep 17 00:00:00 2001 From: Alexander McLean Date: Fri, 18 Apr 2025 11:04:54 -0400 Subject: [PATCH] fixed ClickSearch for artists, updated version --- src/main/java/com/CDPrintable/ProgramWindow.java | 2 ++ src/main/resources/version.properties | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/CDPrintable/ProgramWindow.java b/src/main/java/com/CDPrintable/ProgramWindow.java index e47cdc5..e96c454 100644 --- a/src/main/java/com/CDPrintable/ProgramWindow.java +++ b/src/main/java/com/CDPrintable/ProgramWindow.java @@ -408,6 +408,8 @@ public static void clearIdList() { private void clickSearch(int row, int col, JTable table) { String typeOfTable = table.getColumnName(0); if (row < 0 || col < 0) return; + if (typeOfTable.equals("Artist Name")) {return;} + if (col == 0 || col == 1) { setSearchStatus("Fetching Info...", "blue"); } diff --git a/src/main/resources/version.properties b/src/main/resources/version.properties index e10740d..00dacdd 100644 --- a/src/main/resources/version.properties +++ b/src/main/resources/version.properties @@ -1,4 +1,4 @@ # Application version. # MAJOR MINOR PATCH -version=1.10.8 \ No newline at end of file +version=1.10.9 \ No newline at end of file