commit 3cb07ba4401676534d521b46ae600b702e16db90
parent d1274b8538d173c708552ced7b05120b1df270d4
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Tue, 23 Apr 2024 16:27:28 +0200
Fix bad constant
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/clap/ext/draft/undo.h b/include/clap/ext/draft/undo.h
@@ -53,7 +53,7 @@ enum clap_undo_delta_properties_flags {
// If set, then the delta will be re-usable in the future as long as the plugin is
// compatible with the given format_version.
- CLAP_UNDO_DELTA_PROPERTIES_IS_PERSISTANT = 1 << 0,
+ CLAP_UNDO_DELTA_PROPERTIES_IS_PERSISTANT = 1 << 1,
};
typedef struct clap_undo_delta_properties {