mirror of
https://github.com/YACReader/yacreader
synced 2026-02-14 11:03:02 -05:00
Fix open comic shortcut in fullscreen mode
Some checks failed
Build / Initialization (push) Has been cancelled
Build / Code Format Validation (push) Has been cancelled
Build / Linux (Qt5) (push) Has been cancelled
Build / Linux (Qt6) (push) Has been cancelled
Build / Linux (Qt6 + 7zip) (push) Has been cancelled
Build / macOS (Qt6 Universal) (push) Has been cancelled
Build / macOS (Qt5) (push) Has been cancelled
Build / Windows x64 (Qt5) (push) Has been cancelled
Build / Windows x64 (Qt6) (push) Has been cancelled
Build / Windows ARM64 (Qt6) (push) Has been cancelled
Build / Windows x86 (Qt5) (push) Has been cancelled
Build / Docker amd64 Image (push) Has been cancelled
Build / Docker arm64 Image (push) Has been cancelled
Build / Publish Dev Builds (push) Has been cancelled
Build / Publish Release (push) Has been cancelled
Some checks failed
Build / Initialization (push) Has been cancelled
Build / Code Format Validation (push) Has been cancelled
Build / Linux (Qt5) (push) Has been cancelled
Build / Linux (Qt6) (push) Has been cancelled
Build / Linux (Qt6 + 7zip) (push) Has been cancelled
Build / macOS (Qt6 Universal) (push) Has been cancelled
Build / macOS (Qt5) (push) Has been cancelled
Build / Windows x64 (Qt5) (push) Has been cancelled
Build / Windows x64 (Qt6) (push) Has been cancelled
Build / Windows ARM64 (Qt6) (push) Has been cancelled
Build / Windows x86 (Qt5) (push) Has been cancelled
Build / Docker amd64 Image (push) Has been cancelled
Build / Docker arm64 Image (push) Has been cancelled
Build / Publish Dev Builds (push) Has been cancelled
Build / Publish Release (push) Has been cancelled
This commit is contained in:
@ -10,6 +10,7 @@ Version counting is based on semantic versioning (Major.Feature.Patch)
|
|||||||
### YACReaderLibrary
|
### YACReaderLibrary
|
||||||
* Fix table view last section stretch. Before it was only working randomly.
|
* 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 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
|
## 9.16.2
|
||||||
|
|
||||||
|
|||||||
@ -441,6 +441,9 @@ void LibraryWindowActions::createActions(LibraryWindow *window, QSettings *setti
|
|||||||
addToFavoritesAction->setToolTip(tr("Add selected comics to favorites list"));
|
addToFavoritesAction->setToolTip(tr("Add selected comics to favorites list"));
|
||||||
addToFavoritesAction->setIcon(QIcon(":/images/lists/default_1.svg"));
|
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
|
// actions not asigned to any widget
|
||||||
window->addAction(saveCoversToAction);
|
window->addAction(saveCoversToAction);
|
||||||
window->addAction(openContainingFolderAction);
|
window->addAction(openContainingFolderAction);
|
||||||
|
|||||||
Reference in New Issue
Block a user