mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Merge branch 'Falkon/3.1'
This commit is contained in:
commit
0b261874cb
|
@ -107,9 +107,9 @@ void BookmarksManager::createContextMenu(const QPoint &pos)
|
|||
QAction* actNewPrivateWindow = menu.addAction(IconProvider::privateBrowsingIcon(), tr("Open in new private window"));
|
||||
|
||||
menu.addSeparator();
|
||||
menu.addAction(tr("New Bookmark"), this, SLOT(addBookmark()));
|
||||
menu.addAction(tr("New Folder"), this, &BookmarksManager::addFolder);
|
||||
menu.addAction(tr("New Separator"), this, &BookmarksManager::addSeparator);
|
||||
QAction *actNewBookmark = menu.addAction(tr("New Bookmark"), this, SLOT(addBookmark()));
|
||||
QAction *actNewFolder = menu.addAction(tr("New Folder"), this, &BookmarksManager::addFolder);
|
||||
QAction *actNewSeparator = menu.addAction(tr("New Separator"), this, &BookmarksManager::addSeparator);
|
||||
menu.addSeparator();
|
||||
QAction* actDelete = menu.addAction(QIcon::fromTheme(QSL("edit-delete")), tr("Delete"));
|
||||
|
||||
|
@ -138,6 +138,12 @@ void BookmarksManager::createContextMenu(const QPoint &pos)
|
|||
actNewPrivateWindow->setDisabled(true);
|
||||
}
|
||||
|
||||
if (!m_selectedBookmark) {
|
||||
actNewBookmark->setDisabled(true);
|
||||
actNewFolder->setDisabled(true);
|
||||
actNewSeparator->setDisabled(true);
|
||||
}
|
||||
|
||||
menu.exec(pos);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user