diff --git a/CHANGELOG.md b/CHANGELOG.md index 04f4c2dc..0d1ef6f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ Version counting is based on semantic versioning (Major.Feature.Patch) ### YACReaderLibrary * Fix table view last section stretch. Before it was only working randomly. * Fix empty table view caused by wront state being saved. You'll need to reconfigure the table view headers to your liking after this. +* Fix open comic shortcut in fullscreen mode. ## 9.16.2 diff --git a/YACReaderLibrary/library_window_actions.cpp b/YACReaderLibrary/library_window_actions.cpp index 554e5eea..ad49d1e7 100644 --- a/YACReaderLibrary/library_window_actions.cpp +++ b/YACReaderLibrary/library_window_actions.cpp @@ -441,6 +441,9 @@ void LibraryWindowActions::createActions(LibraryWindow *window, QSettings *setti addToFavoritesAction->setToolTip(tr("Add selected comics to favorites list")); addToFavoritesAction->setIcon(QIcon(":/images/lists/default_1.svg")); + // global actions + window->addAction(openComicAction); // this fixes opening comics in fullscreen mode using the keyboard shortcut + // actions not asigned to any widget window->addAction(saveCoversToAction); window->addAction(openContainingFolderAction);