Skip to content

Commit

Permalink
auto trim entries to track hub dialog. Fixes #1485
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Feb 7, 2024
1 parent ed83c8f commit b4e9f03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ else if (inputs.length == 1 && SessionReader.isSessionFile(inputs[0])) {
} else if ((e.getActionCommand().equalsIgnoreCase(LOAD_TRACKHUB))) {

String urlOrAccension = JOptionPane.showInputDialog(IGV.getInstance().getMainFrame(), ta, "Enter GCA or GCF accension, or URL to hub.txt file",
JOptionPane.QUESTION_MESSAGE);
JOptionPane.QUESTION_MESSAGE).trim();

String url;
if(urlOrAccension.startsWith("GC")) {
Expand Down

0 comments on commit b4e9f03

Please sign in to comment.