Skip to content

Commit

Permalink
Bauhaus sliders: restore interactive update on mouse_moved events
Browse files Browse the repository at this point in the history
Since GUI timeouts, pipe cache and pipe killswitch now all work reliably, it shouldn't put slow hardware on infinite recompute loops.
  • Loading branch information
aurelienpierre committed Jan 15, 2025
1 parent 2a0a9b9 commit 03e9230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bauhaus/bauhaus.c
Original file line number Diff line number Diff line change
Expand Up @@ -3121,7 +3121,7 @@ static gboolean dt_bauhaus_slider_motion_notify(GtkWidget *widget, GdkEventMotio

darktable.bauhaus->mouse_x = event_x;
darktable.bauhaus->mouse_y = event_y;
dt_bauhaus_slider_set_normalized(w, event_x / main_width, FALSE, FALSE);
dt_bauhaus_slider_set_normalized(w, event_x / main_width, TRUE, TRUE);
}

return activated;
Expand Down

0 comments on commit 03e9230

Please sign in to comment.