From 88e244ebb9dc73549951f69181e1919d264bc433 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 21 Jan 2009 07:01:20 +0000 Subject: basic transform for sequencer strips can transform the strips or move their handles Still todo, click-drag transform, metastrips support, snapping, markers overlap checks and constrain to valid channels. --- source/blender/python/intern/bpy_compat.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/blender/python') diff --git a/source/blender/python/intern/bpy_compat.h b/source/blender/python/intern/bpy_compat.h index 0032b760219..bc201a3e802 100644 --- a/source/blender/python/intern/bpy_compat.h +++ b/source/blender/python/intern/bpy_compat.h @@ -43,7 +43,15 @@ #undef PyLong_Check #define PyLong_Check PyInt_Check + +#ifdef PyUnicode_FromString +#undef PyUnicode_FromString +#endif #define PyUnicode_FromString PyString_FromString + +#ifdef PyUnicode_FromFormat +#undef PyUnicode_FromFormat +#endif #define PyUnicode_FromFormat PyString_FromFormat #endif -- cgit v1.2.3