diff --git a/src/timeline/ImageComponent.qml b/src/timeline/ImageComponent.qml index 0e8dfa592..3cc90b012 100644 --- a/src/timeline/ImageComponent.qml +++ b/src/timeline/ImageComponent.qml @@ -184,8 +184,8 @@ Item { MediaSizeHelper { id: mediaSizeHelper contentMaxWidth: root.maxContentWidth - mediaWidth: root?.mediaInfo.width ?? 0 - mediaHeight: root?.mediaInfo.height ?? 0 + mediaWidth: root?.mediaInfo.isSticker ? 256 : (root?.mediaInfo.width ?? 0) + mediaHeight: root?.mediaInfo.isSticker ? 256 : (root?.mediaInfo.height ?? 0) } QtObject {