From b50681881dfb27f17a16964beb227de45ffbfe60 Mon Sep 17 00:00:00 2001 From: Kirottu Date: Sat, 31 Dec 2022 21:30:18 +0200 Subject: [PATCH] Removed redundant style class name --- anyrun/src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/anyrun/src/main.rs b/anyrun/src/main.rs index 3fed5b2..6b219e9 100644 --- a/anyrun/src/main.rs +++ b/anyrun/src/main.rs @@ -56,7 +56,6 @@ mod style_names { pub const MATCH_TITLE: &str = "match-title"; pub const MATCH_DESC: &str = "match-desc"; - pub const TITLE_DESC_BOX: &str = "title-desc-box"; } fn main() { @@ -466,7 +465,7 @@ fn handle_matches(matches: RVec, plugin_view: PluginView) { ROption::RSome(desc) => { let title_desc_box = gtk::Box::builder() .orientation(gtk::Orientation::Vertical) - .name(style_names::TITLE_DESC_BOX) + .name(style_names::MATCH) .hexpand(true) .vexpand(true) .build();