mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-11 07:56:27 +01:00
Allow to disable smart ruler changes.
This commit is contained in:
parent
232096bcb2
commit
1b531116e4
2 changed files with 4 additions and 1 deletions
|
|
@ -2283,7 +2283,9 @@ Editor::set_grid_to (GridType gt)
|
|||
grid_type_selector.set_text (str);
|
||||
}
|
||||
|
||||
show_rulers_for_grid ();
|
||||
if (UIConfiguration::instance().get_show_grids_ruler()) {
|
||||
show_rulers_for_grid ();
|
||||
}
|
||||
|
||||
instant_save ();
|
||||
|
||||
|
|
|
|||
|
|
@ -107,5 +107,6 @@ UI_CONFIG_VARIABLE (bool, snap_to_region_sync, "snap-to-region-sync", true)
|
|||
UI_CONFIG_VARIABLE (bool, snap_to_region_start, "snap-to-region-start", true)
|
||||
UI_CONFIG_VARIABLE (bool, snap_to_region_end, "snap-to-region-end", true)
|
||||
UI_CONFIG_VARIABLE (bool, snap_to_grid, "snap-to-grid", true)
|
||||
UI_CONFIG_VARIABLE (bool, show_grids_ruler, "show-grids-ruler", true)
|
||||
UI_CONFIG_VARIABLE (bool, rulers_follow_grid, "rulers-follow-grid", false)
|
||||
UI_CONFIG_VARIABLE (bool, grid_follows_internal, "grid-follows-internal", false) //this feature is deprecated, default it FALSE for now; remove it in v6
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue