From e7b362d731a809154f1ed18f4b77482e88e598cb Mon Sep 17 00:00:00 2001 From: Pascal Obry Date: Mon, 30 Sep 2024 07:54:17 +0200 Subject: [PATCH] darkroom: Allow undo/redo support for copy/paste history in filmstrip. --- src/common/undo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/undo.h b/src/common/undo.h index 18f0c09e159a..9bbe85853a99 100644 --- a/src/common/undo.h +++ b/src/common/undo.h @@ -37,7 +37,7 @@ typedef enum dt_undo_type_t DT_UNDO_FLAGS = 1 << 8, DT_UNDO_DATETIME = 1 << 9, DT_UNDO_DUPLICATE = 1 << 10, - DT_UNDO_DEVELOP = DT_UNDO_HISTORY | DT_UNDO_MASK | DT_UNDO_TAGS + DT_UNDO_DEVELOP = DT_UNDO_HISTORY | DT_UNDO_LT_HISTORY | DT_UNDO_MASK | DT_UNDO_TAGS | DT_UNDO_RATINGS | DT_UNDO_COLORLABELS | DT_UNDO_DUPLICATE, DT_UNDO_LIGHTTABLE = DT_UNDO_RATINGS | DT_UNDO_COLORLABELS | DT_UNDO_TAGS | DT_UNDO_METADATA | DT_UNDO_LT_HISTORY | DT_UNDO_GEOTAG