mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-30 18:37:40 +01:00
Quantize Dialog: Fix quantize-to-main-grid selection. Was checking against incorrect menu entry string.
This commit is contained in:
parent
9a9df5a10b
commit
db98341d4d
1 changed files with 1 additions and 1 deletions
|
|
@ -144,7 +144,7 @@ QuantizeDialog::end_grid_size () const
|
|||
double
|
||||
QuantizeDialog::grid_size_to_musical_time (const string& txt) const
|
||||
{
|
||||
if (txt == _("main grid")) {
|
||||
if ( txt == _grid_strings[0] ) { //"Main Grid"
|
||||
bool success;
|
||||
|
||||
Temporal::Beats b = editor.get_grid_type_as_beats (success, 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue