Renamed method.

This commit is contained in:
Luis Ángel San Martín
2016-04-13 22:02:50 +02:00
parent 13ceedc8ec
commit 655b39e945
2 changed files with 6 additions and 4 deletions

View File

@ -103,9 +103,11 @@ void YACReaderComicsViewsManager::toggleComicsView()
{
if(comicsViewStack->currentWidget()==comicsView) {
QTimer::singleShot(0,this,SLOT(showComicsViewTransition()));
QTimer::singleShot(100,this,SLOT(toggleComicsView_delayed()));
QTimer::singleShot(100,this,SLOT(_toggleComicsView()));
} else
toggleComicsView_delayed();
{
_toggleComicsView();
}
}
//PROTECTED
@ -168,7 +170,7 @@ void YACReaderComicsViewsManager::showComicsViewTransition()
comicsViewStack->setCurrentWidget(comicsViewTransition);
}
void YACReaderComicsViewsManager::toggleComicsView_delayed()
void YACReaderComicsViewsManager::_toggleComicsView()
{
switch(comicsViewStatus)
{