Skip to content

Commit e51770c

Browse files
authoredJan 12, 2025··
Merge pull request #4045 from bjorn/new-properties-framework
New properties framework.
2 parents dc71c70 + 544ae78 commit e51770c

File tree

179 files changed

+7668
-23418
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+7668
-23418
lines changed
 

‎AUTHORS

+6
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,12 @@ Icons from the Elementary icon theme (GPLv3)
362362
* src/tiled/images/32/dialog-error.png
363363
* src/tiled/images/32/dialog-warning.png
364364

365+
Icons from the GNOME project (CC0 1.0 Universal)
366+
* src/tiled/resources/images/scalable/text-bold-symbolic.svg
367+
* src/tiled/resources/images/scalable/text-italic-symbolic.svg
368+
* src/tiled/resources/images/scalable/text-underline-symbolic.svg
369+
* src/tiled/resources/images/scalable/text-strikethrough-symbolic.svg
370+
365371

366372
Tilesets:
367373

‎src/libtiled/imagelayer.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ ImageLayer *ImageLayer::initializeClone(ImageLayer *clone) const
104104
clone->mImageSource = mImageSource;
105105
clone->mTransparentColor = mTransparentColor;
106106
clone->mImage = mImage;
107-
clone->mRepeatX = mRepeatX;
108-
clone->mRepeatY = mRepeatY;
107+
clone->mRepetition = mRepetition;
109108

110109
return clone;
111110
}

0 commit comments

Comments
 (0)
Please sign in to comment.