notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 6739ed6d5828ef9847d4f903b76c02aee9f46b32
parent 44edffc59679af89a9e7e8bb1db6236e5f7ec94a
Author: Fernando López Guevara <fernando.lguevara@gmail.com>
Date:   Mon, 14 Jul 2025 09:56:01 -0300

fix(compose-button): apply icon_color to compose button edge circles & add hover text

Diffstat:
Mcrates/notedeck_columns/src/ui/post.rs | 14++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/crates/notedeck_columns/src/ui/post.rs b/crates/notedeck_columns/src/ui/post.rs @@ -45,11 +45,13 @@ pub fn compose_note_button(dark_mode: bool) -> impl Widget { [west_edge, east_edge], Stroke::new(use_line_width, icon_color), ); - painter.circle_filled(north_edge, use_edge_circle_radius, Color32::WHITE); - painter.circle_filled(south_edge, use_edge_circle_radius, Color32::WHITE); - painter.circle_filled(west_edge, use_edge_circle_radius, Color32::WHITE); - painter.circle_filled(east_edge, use_edge_circle_radius, Color32::WHITE); - - helper.take_animation_response() + painter.circle_filled(north_edge, use_edge_circle_radius, icon_color); + painter.circle_filled(south_edge, use_edge_circle_radius, icon_color); + painter.circle_filled(west_edge, use_edge_circle_radius, icon_color); + painter.circle_filled(east_edge, use_edge_circle_radius, icon_color); + + helper + .take_animation_response() + .on_hover_text("Compose new note") } }