NO-OP: fix space near braces/brackets

This commit is contained in:
Paul Davis 2024-04-02 18:02:46 -06:00
parent 43e0f08b93
commit 5d1233e60a
1 changed files with 4 additions and 2 deletions

View File

@ -312,13 +312,15 @@ SoundFileBox::audition_progress(ARDOUR::samplecnt_t pos, ARDOUR::samplecnt_t len
} }
bool bool
SoundFileBox::seek_button_press(GdkEventButton*) { SoundFileBox::seek_button_press (GdkEventButton*)
{
_seeking = true; _seeking = true;
return false; // pass on to slider return false; // pass on to slider
} }
bool bool
SoundFileBox::seek_button_release(GdkEventButton*) { SoundFileBox::seek_button_release (GdkEventButton*)
{
_seeking = false; _seeking = false;
_session->the_auditioner()->seek_to_percent(seek_slider.get_value() / 10.0); _session->the_auditioner()->seek_to_percent(seek_slider.get_value() / 10.0);
seek_slider.set_sensitive (false); seek_slider.set_sensitive (false);