Skip to content

Commit

Permalink
fix build problem
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Nov 30, 2023
1 parent 353e9a9 commit 75958ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
exports org.broad.igv.util.liftover;
exports org.broad.igv.sam.smrt;
exports org.broad.igv.ui.supdiagram;
exports org.broad.igv.feature.genome.load to com.google.gson;
opens org.broad.igv.feature.genome.load to com.google.gson;

requires com.google.common;
requires commons.math3;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/broad/igv/ui/IGVMenuBar.java
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ JMenu createFileMenu() {
menuAction.setToolTipText(UIConstants.LOAD_TRACKS_TOOLTIP);
menuItems.add(MenuAndToolbarUtils.createMenuItem(menuAction));

menuAction = new LoadFromServerAction("Load IGV Hosted Tracks...", KeyEvent.VK_S, igv);
menuAction = new LoadFromServerAction("Load Hosted Tracks...", KeyEvent.VK_S, igv);
menuAction.setToolTipText(UIConstants.LOAD_SERVER_DATA_TOOLTIP);
menuItems.add(MenuAndToolbarUtils.createMenuItem(menuAction));

Expand Down

0 comments on commit 75958ed

Please sign in to comment.