SVN commit 1173205 by ruberg: BUG: 167243 Made folderview use the new non-modal dialogs option of knewfilemenu. Folderview is no more blocking the whole plasma shell when creating files or directorys M +2 -0 folderview.cpp --- trunk/KDE/kdebase/apps/plasma/applets/folderview/folderview.cpp #1173204:1173205 @@ -1406,6 +1406,8 @@ // Create the new menu m_newMenu = new KNewFileMenu(&m_actionCollection, "new_menu", QApplication::desktop()); + m_newMenu->setModal(false); + connect(m_newMenu->menu(), SIGNAL(aboutToShow()), this, SLOT(aboutToShowCreateNew())); m_actionCollection.addAction("lock_icons", lockIcons);