make compose button animate horiz rather than vert

it animating over the toolbar made the bar dissapear for
some reason

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-08-13 19:06:18 -04:00
parent 361d0e3708
commit 3d8018bb9a

View File

@@ -659,8 +659,10 @@ fn hovering_post_button(
let button_y = ui let button_y = ui
.ctx() .ctx()
.animate_bool_responsive(btn_id, should_show_compose); .animate_bool_responsive(btn_id, should_show_compose);
rect.min.x = rect.max.x - if is_narrow(ui.ctx()) { 60.0 } else { 100.0 };
rect.min.y = rect.max.y - 100.0 * button_y; rect.min.x = rect.max.x - (if is_narrow(ui.ctx()) { 60.0 } else { 100.0 } * button_y);
rect.min.y = rect.max.y - 100.0;
rect.max.x += 48.0 * (1.0 - button_y);
let darkmode = ui.ctx().style().visuals.dark_mode; let darkmode = ui.ctx().style().visuals.dark_mode;