From: Méven Car Date: Mon, 15 Jul 2019 14:19:09 +0000 (+0200) Subject: Fix a regression preventing previews to be resized X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/200bc71130f4e60c28cdc7d32249eeb321e71d13 Fix a regression preventing previews to be resized Summary: e6c1b97d67f6b6c6d4ad935db14241b041b3fca4 introduced a regression preventing previews to be properly resized. Test Plan: Manual : resizing the information panel and the window Reviewers: #dolphin, ngraham Reviewed By: #dolphin, ngraham Subscribers: kfm-devel Tags: #dolphin Differential Revision: https://phabricator.kde.org/D22473 --- diff --git a/src/panels/information/informationpanelcontent.cpp b/src/panels/information/informationpanelcontent.cpp index 444261eff..363ad818d 100644 --- a/src/panels/information/informationpanelcontent.cpp +++ b/src/panels/information/informationpanelcontent.cpp @@ -161,9 +161,9 @@ void InformationPanelContent::showItem(const KFileItem& item) if (item != m_item) { m_item = item; - refreshPreview(); refreshMetaData(); } + refreshPreview(); } void InformationPanelContent::refreshPreview()