X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/b9c04a701d093fe56c516f520fa16c8f6eb1e007..52da2dc809cde43d2ada7b76e014dd4fee5b62c3:/src/dolphinmainwindow.cpp diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 36f0316c6..b0eccde0d 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -207,7 +207,10 @@ DolphinMainWindow::DolphinMainWindow() if (usePhoneUi) { Q_ASSERT(qobject_cast(m_placesPanel->parent())); m_placesPanel->parentWidget()->hide(); - GeneralSettings::setShowZoomSlider(false); + auto settings = GeneralSettings::self(); + settings->setShowZoomSlider(false); // Zooming can be done with pinch gestures instead and we are short on horizontal space. + settings->setRenameInline(false); // This works around inline renaming currently not working well with virtual keyboards. + settings->save(); // Otherwise the RenameInline setting is not picked up for the first time Dolphin is used. } }