From f640e48bbe3504e4ae3e16349cf98ba9fae90428 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Fri, 16 Dec 2011 19:41:32 +0100 Subject: [PATCH] Assure that the general settings are refreshed This fixes issues where Dolphin must get restarted after changing a general setting. BUG: 289131 FIXED-IN: 4.8.0 --- src/views/dolphinview.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index a94a41e151..d50a7dd090 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -451,6 +451,7 @@ void DolphinView::stopLoading() void DolphinView::refresh() { + GeneralSettings::self()->readConfig(); m_container->refresh(); applyViewProperties(); }