remove snap-to-grid option (subsumed by SnapTarget preference)

This commit is contained in:
Ben Loftis 2023-09-11 10:23:18 -05:00
parent 082c009e1b
commit 25daebbaf2
2 changed files with 0 additions and 9 deletions

View File

@ -3481,14 +3481,6 @@ These settings will only take effect after %1 is restarted.\n\
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_snap_to_region_end)
));
add_option (_("Editor/Snap"),
new BoolOption (
"snap-to-grid",
_("Grid"),
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::get_snap_to_grid),
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_snap_to_grid)
));
add_option (_("Editor/Modifiers"), new OptionEditorHeading (_("Keyboard Modifiers")));
add_option (_("Editor/Modifiers"), new KeyboardOptions);
add_option (_("Editor/Modifiers"), new OptionEditorBlank ());

View File

@ -140,7 +140,6 @@ UI_CONFIG_VARIABLE (bool, snap_to_playhead, "snap-to-playhead", true)
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_selection_marker, "show-selection-marker", true)
UI_CONFIG_VARIABLE (bool, show_grids_ruler, "show-grids-ruler", true)
UI_CONFIG_VARIABLE (bool, rulers_follow_grid, "rulers-follow-grid", false)