diff --git a/CHANGELOG b/CHANGELOG index f74ae11..f8aa2f0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,9 @@ QtnProperty =========== +v2.0.3 23.12.2020 + [FIX] Register QVariant property delegate + v2.0.2 18.12.2020 [FIX] Don't break property view splitter with drag action diff --git a/QtnProperty/Delegates/PropertyDelegateFactory.cpp b/QtnProperty/Delegates/PropertyDelegateFactory.cpp index 64c9beb..6479927 100644 --- a/QtnProperty/Delegates/PropertyDelegateFactory.cpp +++ b/QtnProperty/Delegates/PropertyDelegateFactory.cpp @@ -44,6 +44,7 @@ limitations under the License. #include "QtnProperty/PropertyInt64.h" #include "QtnProperty/PropertyUInt64.h" #include "QtnProperty/MultiProperty.h" +#include "QtnProperty/PropertyQVariant.h" #include @@ -252,6 +253,7 @@ void QtnPropertyDelegateFactory::registerDefaultDelegates( QtnPropertyDelegateQBrushStyle::Register(factory); QtnPropertyDelegateQKeySequence::Register(factory); QtnPropertyDelegateQVector3D::Register(factory); + QtnPropertyDelegateQVariant::Register(factory); QtnMultiPropertyDelegate::Register(factory); } diff --git a/QtnProperty/QtnProperty.pro b/QtnProperty/QtnProperty.pro index 1245e77..a02ac12 100644 --- a/QtnProperty/QtnProperty.pro +++ b/QtnProperty/QtnProperty.pro @@ -2,7 +2,7 @@ include(../Internal/TargetConfig.pri) TARGET = QtnProperty TEMPLATE = lib -VERSION = 2.0.2 +VERSION = 2.0.3 qtnproperty_dynamic { DEFINES += QTN_DYNAMIC_LIBRARY