diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-09-04 00:12:40 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-09-04 00:12:40 +0200 |
commit | b11b9cd4a17024c69f97c31dd03509e2e5bc3187 (patch) | |
tree | 4d9705372e08d2c05616b2c1e5a860b0f2d9b49b /src/bookmarks | |
parent | Merge commit 'refs/merge-requests/201' of git://gitorious.org/rekonq/mainline... (diff) | |
parent | Fix the BK panel drag and drop regression introduced by 0d53995507a369d5b4cfd... (diff) | |
download | rekonq-b11b9cd4a17024c69f97c31dd03509e2e5bc3187.tar.xz |
Merge commit 'refs/merge-requests/202' of git://gitorious.org/rekonq/mainline
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/bookmarkspanel.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bookmarks/bookmarkspanel.cpp b/src/bookmarks/bookmarkspanel.cpp index e11c0280..f732cb22 100644 --- a/src/bookmarks/bookmarkspanel.cpp +++ b/src/bookmarks/bookmarkspanel.cpp @@ -49,6 +49,8 @@ BookmarksPanel::BookmarksPanel(const QString &title, QWidget *parent, Qt::Window { setObjectName("bookmarksPanel"); setVisible(ReKonfig::showBookmarksPanel()); + panelTreeView()->setDragEnabled(true); + panelTreeView()->setAcceptDrops(true); connect(_bkTreeModel, SIGNAL(bookmarksUpdated()), this, SLOT(startLoadFoldedState())); } |