1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

Added sorting in cookie filter list

Reviewers: drosca

Reviewed By: drosca

Subscribers: falkon

Tags: #falkon

Differential Revision: https://phabricator.kde.org/D13109
This commit is contained in:
Anmol Gautam 2018-05-26 00:14:30 +05:30
parent 326be38a45
commit ae16c64290

View File

@ -85,6 +85,9 @@ CookieManager::CookieManager(QWidget *parent)
ui->cookieTree->header()->setDefaultSectionSize(220);
ui->cookieTree->setFocus();
ui->whiteList->setSortingEnabled(true);
ui->blackList->setSortingEnabled(true);
QShortcut* removeShortcut = new QShortcut(QKeySequence("Del"), this);
connect(removeShortcut, SIGNAL(activated()), this, SLOT(deletePressed()));