Fix view mode-specific settings not always applying

When the current view mode is different from the view mode for
which settings were changed in Dolphin's settings dialog, those
changes were sometimes not present when then changing the view
mode of a view to the view mode for which settings were changed.

This commit fixes this by always loading the settings for all view
modes in the DolphinItemListView even if the view is currently
using only one of those view modes.
This commit is contained in:
Felix Ernst 2022-10-23 19:37:50 +02:00 committed by Felix Ernst
parent 57cdee5951
commit f267544472

View file

@ -77,8 +77,10 @@ void DolphinItemListView::setEnabledSelectionToggles(DolphinItemListView::Select
void DolphinItemListView::readSettings()
{
ViewModeSettings settings(itemLayout());
settings.readConfig();
// We load the settings for all view modes now because we don't load them when the view mode changes.
IconsModeSettings::self()->load();
CompactModeSettings::self()->load();
DetailsModeSettings::self()->load();
beginTransaction();