Compare commits

1 Commits

Author SHA1 Message Date
6da7e97f19 feat: mail finder 2026-05-06 23:12:57 +02:00
3 changed files with 2 additions and 3 deletions

0
scripts/launcher.py Normal file → Executable file
View File

View File

@@ -108,7 +108,7 @@ class NotmuchSearchProvider:
return hits
def render_hit(self, hit: NotmuchHit) -> Gtk.Widget:
text = Box(name="notmuch-text", orientation="v", spacing=0)
text = Box(name="notmuch-text", orientation="v", spacing=0, h_expand=True)
text.add(
Label(
label=hit.subject,
@@ -138,7 +138,7 @@ class NotmuchSearchProvider:
)
def render_saved(self, item: SavedSearch) -> Gtk.Widget:
text = Box(name="notmuch-text", orientation="v", spacing=0)
text = Box(name="notmuch-text", orientation="v", spacing=0, h_expand=True)
text.add(
Label(label=item.name, name="notmuch-saved-name", h_align="start")
)

View File

@@ -73,7 +73,6 @@
#notmuch-date {
font-size: 11px;
opacity: 0.6;
min-width: 90px;
}
#notmuch-saved-name {