Skip to content

Commit 8a9a149

Browse files
committed
Bumped version to 1.1.4
1 parent c783837 commit 8a9a149

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
## [1.1.4](https://github.com/longitachi/ZLImageEditor/releases/tag/1.1.4) (2022-09-28)
66
### Add:
7-
* Can change tool icon's highlited color by `toolIconHighlightedColor`.[#28](https://github.com/longitachi/ZLImageEditor/pull/28)
8-
* Support Arabic language.[#27](https://github.com/longitachi/ZLImageEditor/pull/27)
7+
* Can change tool icon's highlited color by `toolIconHighlightedColor`.[#28](https://github.com/longitachi/ZLImageEditor/pull/28) @darquro
8+
* Support Arabic language.[#27](https://github.com/longitachi/ZLImageEditor/pull/27) @LastSoul
99

1010
-----
1111

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,6 @@ ZLEditImageViewController.showEditImageVC(parentVC: self, image: image, editMode
6666
Support for custom text.
6767
Support redo in graffiti and mosaic tools.
6868
Add wrapper for ZLImageEditor compatible types.
69-
● 1.1.1
70-
Add:
71-
Can select custom font before adding text sticker.
72-
Change the authority of ZLEditImageViewController to open.
73-
Add ZLImageEditorUIConfiguration.
7469
...
7570
```
7671

Sources/Extensions/UIImage+ZLImageEditor.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ extension ZLImageEditorWrapper where Base: UIImage {
341341

342342
func fillColor(_ color: UIColor) -> UIImage? {
343343
UIGraphicsBeginImageContextWithOptions(base.size, false, base.scale)
344-
let drawRect = CGRect(x: 0, y: 0, width: base.size.width, height: base.size.height)
344+
let drawRect = CGRect(x: 0, y: 0, width: base.zl.width, height: base.zl.height)
345345
color.setFill()
346346
UIRectFill(drawRect)
347347
base.draw(in: drawRect, blendMode: .destinationIn, alpha: 1)

0 commit comments

Comments
 (0)