diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-03 12:46:40 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-03 12:46:40 +1000 |
| commit | e3a27ec90b1dd661cccff6e3036f653f8aa7b095 (patch) | |
| tree | f803145dfcfef2bb9b1c5dc276014203eada1537 /modules | |
| parent | launcher: fix background height (diff) | |
| download | caelestia-shell-e3a27ec90b1dd661cccff6e3036f653f8aa7b095.tar.gz caelestia-shell-e3a27ec90b1dd661cccff6e3036f653f8aa7b095.tar.bz2 caelestia-shell-e3a27ec90b1dd661cccff6e3036f653f8aa7b095.zip | |
launcher: fix scrollbar
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/launcher/AppItem.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/launcher/AppItem.qml b/modules/launcher/AppItem.qml index 473797a..ca1b611 100644 --- a/modules/launcher/AppItem.qml +++ b/modules/launcher/AppItem.qml @@ -48,7 +48,7 @@ PaddedRect { } StyledText { - text: qsTr(root.modelData.comment || root.modelData.genericName || root.modelData.name) + text: root.modelData.comment || root.modelData.genericName || root.modelData.name font.pointSize: Appearance.font.size.small color: Appearance.alpha(Appearance.colours.m3outline, true) |