Compare commits
1 Commits
5b7398de2c
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 6da7e97f19 |
0
scripts/launcher.py
Normal file → Executable file
0
scripts/launcher.py
Normal file → Executable file
@@ -108,7 +108,7 @@ class NotmuchSearchProvider:
|
|||||||
return hits
|
return hits
|
||||||
|
|
||||||
def render_hit(self, hit: NotmuchHit) -> Gtk.Widget:
|
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(
|
text.add(
|
||||||
Label(
|
Label(
|
||||||
label=hit.subject,
|
label=hit.subject,
|
||||||
@@ -138,7 +138,7 @@ class NotmuchSearchProvider:
|
|||||||
)
|
)
|
||||||
|
|
||||||
def render_saved(self, item: SavedSearch) -> Gtk.Widget:
|
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(
|
text.add(
|
||||||
Label(label=item.name, name="notmuch-saved-name", h_align="start")
|
Label(label=item.name, name="notmuch-saved-name", h_align="start")
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -73,7 +73,6 @@
|
|||||||
#notmuch-date {
|
#notmuch-date {
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
min-width: 90px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#notmuch-saved-name {
|
#notmuch-saved-name {
|
||||||
|
|||||||
Reference in New Issue
Block a user