maxwidthchars -> 1

This commit is contained in:
end-4
2024-05-24 20:12:10 +07:00
parent 10aed6353a
commit a004acc05d
5 changed files with 11 additions and 11 deletions
@@ -153,7 +153,7 @@ export default ({
useMarkup: true,
xalign: 0,
justify: Gtk.Justification.LEFT,
maxWidthChars: 24,
maxWidthChars: 1,
truncate: 'end',
label: notifObject.body.split("\n")[0],
}),
@@ -172,7 +172,7 @@ export default ({
useMarkup: true,
xalign: 0,
justify: Gtk.Justification.LEFT,
maxWidthChars: 24,
maxWidthChars: 1,
wrap: true,
label: notifObject.body,
}),
@@ -231,7 +231,7 @@ export default ({
className: 'txt-small txt-semibold titlefont',
justify: Gtk.Justification.LEFT,
hexpand: true,
maxWidthChars: 24,
maxWidthChars: 1,
truncate: 'end',
ellipsize: 3,
useMarkup: notifObject.summary.startsWith('<'),