mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
Wrap functionality
This commit is contained in:
@ -79,6 +79,22 @@ void YACReaderContentViewsManager::updateContinueReadingView()
|
||||
}
|
||||
}
|
||||
|
||||
void YACReaderContentViewsManager::toFullscreen()
|
||||
{
|
||||
if (comicsViewStack->currentWidget() == comicsView) {
|
||||
comicsView->toFullScreen();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
void YACReaderContentViewsManager::toNormal()
|
||||
{
|
||||
if (comicsViewStack->currentWidget() == comicsView) {
|
||||
comicsView->toNormal();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
void YACReaderContentViewsManager::showComicsView()
|
||||
{
|
||||
comicsViewStack->setCurrentWidget(comicsView);
|
||||
|
Reference in New Issue
Block a user