1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 10:46:35 +01:00

Fixed USE_LIBPATH building define + restore cursor on delete bookmarks.

This commit is contained in:
nowrep 2012-04-04 23:43:37 +02:00
parent b287c5f829
commit 67907b5cea
2 changed files with 3 additions and 1 deletions

View File

@ -29,7 +29,7 @@ d_kde = $$(KDE)
d_portable = $$(PORTABLE_BUILD)
d_nonblock_dialogs = $$(NONBLOCK_JS_DIALOGS)
d_use_qtwebkit_2_2 = $$(USE_QTWEBKIT_2_2)
d_use_lib_path = $$(USE_LIB_PATH)
d_use_lib_path = $$(USE_LIBPATH)
equals(d_no_system_datapath, "true") { DEFINES *= NO_SYSTEM_DATAPATH }
equals(d_use_webgl, "true") { DEFINES *= USE_WEBGL }

View File

@ -192,6 +192,8 @@ void BookmarksManager::deleteItem()
if (item->text(1).isEmpty()) { // Delete folder
QString folder = item->text(0);
m_bookmarksModel->removeFolder(folder);
QApplication::restoreOverrideCursor();
return;
}