diff options
Diffstat (limited to 'src/gui')
| -rw-r--r-- | src/gui/search.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/search.rs b/src/gui/search.rs index 7d3320e..7d68e7d 100644 --- a/src/gui/search.rs +++ b/src/gui/search.rs @@ -105,9 +105,8 @@ impl View for Search { let entry = gtk::Box::new(gtk::Orientation::Horizontal, 0); entry.set_margin(10); let path_label = gtk::Label::new(Some(&result.path)); - let prio_label = gtk::Label::new(Some(&result.priority.to_string())); - entry.pack_start(&prio_label, false, false, 10); - entry.pack_start(&path_label, true, true, 10); + path_label.set_justify(gtk::Justification::Left); + entry.pack_start(&path_label, false, false, 10); list.prepend(&entry) } |