Add openContainingFolderComicAction to the window actions so it can be triggered

This commit is contained in:
Luis Ángel San Martín 2024-11-25 21:49:57 +01:00
parent 302eca1aa6
commit dd3188a6da
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ Version counting is based on semantic versioning (Major.Feature.Patch)
* Fix crash when updating the current folder content after a library update. * Fix crash when updating the current folder content after a library update.
* Fix crash when current folders is empty after an update. * Fix crash when current folders is empty after an update.
* Enable dropping content on the FolderContentView. * Enable dropping content on the FolderContentView.
* Fix `open containing folder...` shortcut for comics.
### YACReaderLibraryServer ### YACReaderLibraryServer
* New command --system-info to print information about the execution environment and available resources (including what image formats are supported and what libraries are used by the app). * New command --system-info to print information about the execution environment and available resources (including what image formats are supported and what libraries are used by the app).

View File

@ -442,6 +442,7 @@ void LibraryWindowActions::createActions(LibraryWindow *window, QSettings *setti
window->addAction(setFolderAsYonkomaAction); window->addAction(setFolderAsYonkomaAction);
window->addAction(deleteMetadataAction); window->addAction(deleteMetadataAction);
window->addAction(rescanXMLFromCurrentFolderAction); window->addAction(rescanXMLFromCurrentFolderAction);
window->addAction(openContainingFolderComicAction);
#ifndef Q_OS_MACOS #ifndef Q_OS_MACOS
window->addAction(toggleFullScreenAction); window->addAction(toggleFullScreenAction);
#endif #endif