mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
Automated merge with https://bitbucket.org/luisangelsm/yacreader
This commit is contained in:
commit
616d109c09
@ -499,6 +499,10 @@ void LibraryWindow::createActions()
|
|||||||
getInfoAction->setText(tr("Download tags from Comic Vine"));
|
getInfoAction->setText(tr("Download tags from Comic Vine"));
|
||||||
getInfoAction->setIcon(QIcon(":/images/getInfo.png"));
|
getInfoAction->setIcon(QIcon(":/images/getInfo.png"));
|
||||||
//-------------------------------------------------------------------------
|
//-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
separatorAction = new QAction(this);
|
||||||
|
separatorAction->setSeparator(true);
|
||||||
|
//-------------------------------------------------------------------------
|
||||||
//disable actions
|
//disable actions
|
||||||
disableAllActions();
|
disableAllActions();
|
||||||
}
|
}
|
||||||
@ -640,13 +644,17 @@ void LibraryWindow::createToolBars()
|
|||||||
void LibraryWindow::createMenus()
|
void LibraryWindow::createMenus()
|
||||||
{
|
{
|
||||||
comicView->addAction(openContainingFolderComicAction);
|
comicView->addAction(openContainingFolderComicAction);
|
||||||
|
{ comicView->addAction(separatorAction); }
|
||||||
{
|
comicView->addAction(resetComicRatingAction);
|
||||||
QAction *act = new QAction(this);
|
{ comicView->addAction(separatorAction); }
|
||||||
act->setSeparator(true);
|
comicView->addAction(editSelectedComicsAction);
|
||||||
comicView->addAction(act);
|
comicView->addAction(getInfoAction);
|
||||||
}
|
//comicView->addAction(asignOrderActions);
|
||||||
comicView->addAction(resetComicRatingAction);
|
{ comicView->addAction(separatorAction); }
|
||||||
|
comicView->addAction(setAsReadAction);
|
||||||
|
comicView->addAction(setAsNonReadAction);
|
||||||
|
{ comicView->addAction(separatorAction); }
|
||||||
|
comicView->addAction(deleteComicsAction);
|
||||||
|
|
||||||
foldersView->addAction(openContainingFolderAction);
|
foldersView->addAction(openContainingFolderAction);
|
||||||
|
|
||||||
|
@ -161,6 +161,8 @@ private:
|
|||||||
QAction * deleteComicsAction;
|
QAction * deleteComicsAction;
|
||||||
QAction * hideComicViewAction;
|
QAction * hideComicViewAction;
|
||||||
|
|
||||||
|
QAction * separatorAction; //dummy action
|
||||||
|
|
||||||
#ifdef Q_OS_MAC
|
#ifdef Q_OS_MAC
|
||||||
QToolBar * libraryToolBar;
|
QToolBar * libraryToolBar;
|
||||||
#else
|
#else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user