minor tweaks to Cut Time dialog. Use an enum to tell preferred_edit_location what to ignore, so cut and insert dialogs will never use mouse location.

This commit is contained in:
ben 2013-10-20 16:02:56 -05:00 committed by Ben Loftis
parent 84f0dceefb
commit e2afdb21c3
6 changed files with 26 additions and 15 deletions

View file

@ -208,6 +208,13 @@ enum XFadeType {
At
};
enum EditIgnoreOption {
EDIT_IGNORE_NONE,
EDIT_IGNORE_PHEAD,
EDIT_IGNORE_MOUSE,
EDIT_IGNORE_MARKER
};
} // namespace Editing
#endif // __gtk_ardour_editing_h__