commit 04dd8adfaef8f2b778626fec0e3fe2ac9d3b189c parent c18bb003e27b47aa20ee300b2a8072d93a1fba06 Author: William Casarin <jb55@jb55.com> Date: Wed, 4 Feb 2026 11:59:39 -0800 Merge fix like button not visible in light theme #1275 Diffstat:
| M | crates/notedeck_ui/src/note/mod.rs | | | 6 | +----- |
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/crates/notedeck_ui/src/note/mod.rs b/crates/notedeck_ui/src/note/mod.rs @@ -1046,11 +1046,7 @@ fn like_button( app_images::like_image() }; - if ui.visuals().dark_mode { - img.tint(ui.visuals().text_color()) - } else { - img - } + img.tint(ui.visuals().text_color()) }; let (rect, size, resp) =