From 2188e82fa15ef4938ed1c05c0a66feb047d03ae0 Mon Sep 17 00:00:00 2001 From: Roman Porozhnetov Date: Thu, 29 Aug 2024 02:01:41 +0200 Subject: [PATCH] fix positions --- core/indigo-core/molecule/metadata_storage.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/indigo-core/molecule/metadata_storage.h b/core/indigo-core/molecule/metadata_storage.h index 0b4948461c..4c25fc4d07 100644 --- a/core/indigo-core/molecule/metadata_storage.h +++ b/core/indigo-core/molecule/metadata_storage.h @@ -34,7 +34,7 @@ namespace indigo uint32_t _class_id; virtual MetaObject* clone() const = 0; virtual void getBoundingBox(Rect2f& bbox) const = 0; - virtual void offset( const Vec2f& offset ) = 0; + virtual void offset(const Vec2f& offset) = 0; virtual ~MetaObject(){}; };