https://bugs.kde.org/show_bug.cgi?id=353026
--- Comment #10 from Roman Odaisky <to.roma.from.kde...@qwertty.com> --- Could you please at least make this one-line change, pending future decisions? This way people will be able to change their krunnerrc and get the behavior they want, while everyone else will get the default. --- a/krunner/view.cpp 2016-11-06 17:16:31.858925163 +0200 +++ b/krunner/view.cpp 2016-11-06 19:04:02.339834141 +0200 @@ -176,7 +176,7 @@ void View::slotFocusWindowChanged() { - if (!QGuiApplication::focusWindow()) { + if (!QGuiApplication::focusWindow() && m_config.readEntry("AutoClose", true)) { setVisible(false); } } -- You are receiving this mail because: You are watching all bug changes.