thread_view: Increase click area of the user rules links (#36549)

Release Notes:

- N/A
This commit is contained in:
Danilo Leal 2025-08-20 02:20:58 -03:00 committed by GitHub
parent 60960409f7
commit 1e1110ee8c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2056,6 +2056,7 @@ impl AcpThreadView {
parent.child(
h_flex()
.group("user-rules")
.id("user-rules")
.w_full()
.child(
Icon::new(IconName::Reader)
@ -2078,7 +2079,8 @@ impl AcpThreadView {
.icon_color(Color::Ignored)
.visible_on_hover("user-rules")
// TODO: Figure out a way to pass focus handle here so we can display the `OpenRulesLibrary` keybinding
.tooltip(Tooltip::text("View User Rules"))
.tooltip(Tooltip::text("View User Rules")),
)
.on_click(move |_event, window, cx| {
window.dispatch_action(
Box::new(OpenRulesLibrary {
@ -2087,16 +2089,16 @@ impl AcpThreadView {
cx,
)
}),
),
)
})
.when_some(rules_file_text, |parent, rules_file_text| {
parent.child(
h_flex()
.group("project-rules")
.id("project-rules")
.w_full()
.child(
Icon::new(IconName::File)
Icon::new(IconName::Reader)
.size(IconSize::XSmall)
.color(Color::Disabled),
)
@ -2113,10 +2115,10 @@ impl AcpThreadView {
.shape(ui::IconButtonShape::Square)
.icon_size(IconSize::XSmall)
.icon_color(Color::Ignored)
.on_click(cx.listener(Self::handle_open_rules))
.visible_on_hover("project-rules")
.tooltip(Tooltip::text("View Project Rules")),
),
)
.on_click(cx.listener(Self::handle_open_rules)),
)
})
.into_any(),