┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels
diff options
context:
space:
mode:
authorMéven Car <[email protected]>2019-07-15 16:19:09 +0200
committerMéven Car <[email protected]>2019-07-15 18:40:24 +0200
commit200bc71130f4e60c28cdc7d32249eeb321e71d13 (patch)
tree619740b4ff3e7208e9463eee697e6c0bc1ee03d7 /src/panels
parentc2312b1323da4803a539ec12f1aa506359c16e91 (diff)
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
Diffstat (limited to 'src/panels')
-rw-r--r--src/panels/information/informationpanelcontent.cpp2
1 files changed, 1 insertions, 1 deletions
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()