improve GUI behavior of the tempo dialog by preselecting the start bpm text field

most common user action will be: show dialog, type keys, press return. This works now.
This commit is contained in:
Paul Davis 2021-04-06 20:38:48 -06:00
parent 905ea49f05
commit 7cbecaedff
1 changed files with 3 additions and 0 deletions

View File

@ -276,6 +276,9 @@ TempoDialog::init (const Timecode::BBT_Time& when, double bpm, double end_bpm, d
tempo_type_change();
bpm_spinner.select_region (0, -1);
bpm_spinner.grab_focus ();
tapped = false;
}