Skip to content

Commit

Permalink
whoops, update missed function name
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth authored Dec 31, 2024
1 parent b170016 commit d7db344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/svg/svg.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (

// Colorize creates a new SVG from a given one by replacing all fill colors by the given color.
func Colorize(src []byte, clr color.Color) []byte {
content, err := colorizeImpl(src, clr)
content, err := ColorizeError(src, clr)

Check failure on line 25 in internal/svg/svg.go

View workflow job for this annotation

GitHub Actions / mobile_tests (1.19.x)

content declared but not used

Check failure on line 25 in internal/svg/svg.go

View workflow job for this annotation

GitHub Actions / platform_tests (1.19.x, ubuntu-latest)

content declared but not used

Check failure on line 25 in internal/svg/svg.go

View workflow job for this annotation

GitHub Actions / static_analysis

declared and not used: content

Check failure on line 25 in internal/svg/svg.go

View workflow job for this annotation

GitHub Actions / mobile_tests (1.23.x)

declared and not used: content

Check failure on line 25 in internal/svg/svg.go

View workflow job for this annotation

GitHub Actions / platform_tests (1.19.x, macos-latest)

content declared but not used

Check failure on line 25 in internal/svg/svg.go

View workflow job for this annotation

GitHub Actions / platform_tests (1.23.x, ubuntu-latest)

declared and not used: content

Check failure on line 25 in internal/svg/svg.go

View workflow job for this annotation

GitHub Actions / windows_tests (1.20.x)

content declared and not used

Check failure on line 25 in internal/svg/svg.go

View workflow job for this annotation

GitHub Actions / platform_tests (1.23.x, macos-latest)

declared and not used: content

Check failure on line 25 in internal/svg/svg.go

View workflow job for this annotation

GitHub Actions / windows_tests (1.22.x)

content declared and not used
if err != nil {
fyne.LogError("", err)
}
Expand Down

0 comments on commit d7db344

Please sign in to comment.