mirror of
https://github.com/YACReader/yacreader
synced 2025-07-27 01:15:07 -04:00
Corregida la navegaci?n (up) en las p?ginas
Corregido el ancho de los botones "importing browse"
This commit is contained in:
@ -280,4 +280,28 @@ void HttpSession::setDisplayType(const QString & display)
|
||||
{
|
||||
dataPtr->yacreaderSessionData.display = display;
|
||||
}
|
||||
}
|
||||
|
||||
void HttpSession::clearNavigationPath()
|
||||
{
|
||||
if(dataPtr)
|
||||
dataPtr->yacreaderSessionData.navigationPath.clear();
|
||||
}
|
||||
|
||||
int HttpSession::popPage()
|
||||
{
|
||||
if(dataPtr)
|
||||
return dataPtr->yacreaderSessionData.navigationPath.pop();
|
||||
}
|
||||
|
||||
void HttpSession::pushPage(int page)
|
||||
{
|
||||
if(dataPtr)
|
||||
dataPtr->yacreaderSessionData.navigationPath.push(page);
|
||||
}
|
||||
|
||||
int HttpSession::topPage()
|
||||
{
|
||||
if(dataPtr)
|
||||
return dataPtr->yacreaderSessionData.navigationPath.top();
|
||||
}
|
Reference in New Issue
Block a user