Skip to content

Commit

Permalink
dopesheet: fix rewind button
Browse files Browse the repository at this point in the history
  • Loading branch information
hanatos committed Jan 12, 2025
1 parent ab3a53f commit 2c9059b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/widget_dopesheet.h
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ dt_dopesheet(
TOOLTIP("advance to next frame");
if(nk_button_label(ctx, "\ue044")) dt_gui_dr_anim_step_fwd();
TOOLTIP("rewind to start");
if(nk_button_label(ctx, "\ue042")) dt_gui_dr_prev();
if(nk_button_label(ctx, "\ue042")) dt_gui_dr_anim_seek(0);
nk_style_pop_font(ctx);\

nk_labelf(ctx, NK_TEXT_LEFT, "frame %d/%d", vkdt.graph_dev.frame, vkdt.graph_dev.frame_cnt);
Expand Down

0 comments on commit 2c9059b

Please sign in to comment.