diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-20 16:11:13 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-20 16:11:13 +1000 |
| commit | f6a5836a897fbaa57e971313601e522a327cb570 (patch) | |
| tree | e956f412d3a1a1a5ad36d7a95a8445c18e8a8677 /widgets/filedialog/DialogButtons.qml | |
| parent | filedialog: add filters and buttons (diff) | |
| download | caelestia-shell-f6a5836a897fbaa57e971313601e522a327cb570.tar.gz caelestia-shell-f6a5836a897fbaa57e971313601e522a327cb570.tar.bz2 caelestia-shell-f6a5836a897fbaa57e971313601e522a327cb570.zip | |
filedialog: loader
Diffstat (limited to 'widgets/filedialog/DialogButtons.qml')
| -rw-r--r-- | widgets/filedialog/DialogButtons.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/filedialog/DialogButtons.qml b/widgets/filedialog/DialogButtons.qml index 28284fe..a64195a 100644 --- a/widgets/filedialog/DialogButtons.qml +++ b/widgets/filedialog/DialogButtons.qml @@ -37,7 +37,7 @@ StyledRect { anchors.fill: parent anchors.margins: Appearance.padding.normal - text: `${root.dialog.filterLabel} (${root.dialog.filters})` + text: `${root.dialog.filterLabel} (${root.dialog.filters.map(f => `*.${f}`).join(", ")})` } } |