From 440308fdeae3eedc582f88980994fcef31f9020e Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 7 Feb 2025 11:01:20 -0700 Subject: [PATCH] Adjust style of completions again --- src/tab.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tab.rs b/src/tab.rs index d2c69b2..5329474 100644 --- a/src/tab.rs +++ b/src/tab.rs @@ -3591,7 +3591,7 @@ impl Tab { .class(if selected { theme::Button::Standard } else { - theme::Button::ListItem + theme::Button::HeaderBar }) .on_press(Message::EditLocationComplete(i)) .padding(space_xxs) @@ -3602,7 +3602,7 @@ impl Tab { widget::container(column) .class(theme::Container::Dropdown) //TODO: This is a hack to get the popover to be the right width - .max_width(size.width - 124.0), + .max_width(size.width - 140.0), ); } }