We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9116cdc commit 0ead238Copy full SHA for 0ead238
1 file changed
tagstudio/src/qt/ts_qt.py
@@ -515,6 +515,11 @@ def create_about_modal():
515
path_result = self.evaluate_path(str(self.args.open).lstrip().rstrip())
516
if path_result.success and path_result.library_path:
517
self.open_library(path_result.library_path)
518
+ elif self.settings.value(SettingItems.START_LOAD_LAST):
519
+ # evaluate_path() with argument 'None' returns a LibraryStatus for the last library
520
+ path_result = self.evaluate_path(None)
521
+ if path_result.success and path_result.library_path:
522
+ self.open_library(path_result.library_path)
523
524
# check ffmpeg and show warning if not
525
self.ffmpeg_checker = FfmpegChecker()
0 commit comments