Do not load session when jumping into playerglobal from the highlighter.

This commit is contained in:
Jindra Petřík
2025-06-11 21:39:38 +02:00
parent 76e0a86bdd
commit 008856f4a1
3 changed files with 72 additions and 55 deletions
@@ -1752,10 +1752,10 @@ public class ABCPanel extends JPanel implements ItemListener, SearchListener<Scr
};
if (swf.getFile() == null && "__playerglobal".equals(swf.getFileTitle())) {
mainPanel.findOrLoadOpanableListByFilePath(Configuration.getPlayerSWC().getAbsolutePath(), afterOpen);
mainPanel.findOrLoadOpanableListByFilePath(Configuration.getPlayerSWC().getAbsolutePath(), afterOpen, false);
return;
} else if (swf.getFile() == null && "__airglobal".equals(swf.getFileTitle())) {
mainPanel.findOrLoadOpanableListByFilePath(Configuration.getAirSWC().getAbsolutePath(), afterOpen);
mainPanel.findOrLoadOpanableListByFilePath(Configuration.getAirSWC().getAbsolutePath(), afterOpen, false);
return;
}