From 41cc35cf6e279c4bf99b1c326a6fdc0c53fce495 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 17 Aug 2016 19:21:45 -0400 Subject: do not allow undo/redo while actively recording --- libs/ardour/ardour/session.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'libs/ardour/ardour/session.h') diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h index a1e094a7a4..535317c407 100644 --- a/libs/ardour/ardour/session.h +++ b/libs/ardour/ardour/session.h @@ -874,13 +874,11 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop /** Undo some transactions. * @param n Number of transactions to undo. */ - void undo (uint32_t n) { - _history.undo (n); - } - - void redo (uint32_t n) { - _history.redo (n); - } + void undo (uint32_t n); + /** Redo some transactions. + * @param n Number of transactions to undo. + */ + void redo (uint32_t n); UndoHistory& history() { return _history; } -- cgit v1.2.3