diff options
| author | Sushruta Das <[email protected]> | 2026-01-08 16:32:51 +0530 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2026-01-08 11:02:51 +0000 |
| commit | 5b6dfad767522060596ba2a76044e14ca99db57b (patch) | |
| tree | c2784abeaca7a4de74c6edd9cc795a46313d08f7 /src/settings/viewmodes/viewsettingstab.h | |
| parent | 538169a816e816b59745bd41945a3596a4cde945 (diff) | |
Dolphin: Inform user when italic filename style is not supported by the font
Currently, Dolphin silently falls back to a non-italic variant because italics are reserved for symbolic links. The new message informs users that their selected style cannot be fully applied to avoid confusion.
BUG: 499784
Diffstat (limited to 'src/settings/viewmodes/viewsettingstab.h')
| -rw-r--r-- | src/settings/viewmodes/viewsettingstab.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/settings/viewmodes/viewsettingstab.h b/src/settings/viewmodes/viewsettingstab.h index 5181e8018..6ea7a3bf3 100644 --- a/src/settings/viewmodes/viewsettingstab.h +++ b/src/settings/viewmodes/viewsettingstab.h @@ -15,6 +15,7 @@ class QCheckBox; class QSlider; class QSpinBox; class QRadioButton; +class QLabel; /** * @brief Represents one tab of the view-settings page. @@ -36,6 +37,7 @@ private Q_SLOTS: void slotDefaultSliderMoved(int value); void slotPreviewSliderMoved(int value); + void checkFontStyle(); private: void loadSettings(); @@ -52,6 +54,7 @@ private: QRadioButton *m_entireRow; QRadioButton *m_iconAndNameOnly; QCheckBox *m_expandableFolders; + QLabel *m_fontWarningLabel; }; -#endif +#endif
\ No newline at end of file |
