diff options
| author | Nate Graham <[email protected]> | 2021-03-15 09:43:46 -0600 |
|---|---|---|
| committer | Nate Graham <[email protected]> | 2021-03-15 09:43:46 -0600 |
| commit | a32373e58767c909b7d82ce738848eda0312f662 (patch) | |
| tree | 1b745ed84a9b5331045fc9bc6a3027c7ca045d70 /src/panels | |
| parent | 8988fc01d01422e596a8c19d45a3bf6d41581c8b (diff) | |
Allow selecting filename in information panel
BUG: 434329
FIXED-IN: 21.04
Diffstat (limited to 'src/panels')
| -rw-r--r-- | src/panels/information/informationpanelcontent.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/panels/information/informationpanelcontent.cpp b/src/panels/information/informationpanelcontent.cpp index 03da5f392..d43b9f520 100644 --- a/src/panels/information/informationpanelcontent.cpp +++ b/src/panels/information/informationpanelcontent.cpp @@ -98,6 +98,7 @@ InformationPanelContent::InformationPanelContent(QWidget* parent) : m_nameLabel->setTextFormat(Qt::PlainText); m_nameLabel->setAlignment(Qt::AlignHCenter); m_nameLabel->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Fixed); + m_nameLabel->setTextInteractionFlags(Qt::TextSelectableByMouse); const bool previewsShown = InformationPanelSettings::previewsShown(); m_preview->setVisible(previewsShown); |
