Skip to content
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.

Commit

Permalink
fix alpha channel
Browse files Browse the repository at this point in the history
  • Loading branch information
leminlimez committed Feb 2, 2023
1 parent 1b02af7 commit e0cce2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file not shown.
3 changes: 2 additions & 1 deletion Cowabunga/Controllers/Tools/SpringboardColorManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ class SpringboardColorManager {
thirdLevel["red"] = color.rgba.red
thirdLevel["green"] = color.rgba.green
thirdLevel["blue"] = color.rgba.blue
thirdLevel["alpha"] = color.rgba.alpha
thirdLevel["alpha"] = 1

secondLevel["tintColor"] = thirdLevel
secondLevel["tintAlpha"] = color.rgba.alpha
firstLevel["tinting"] = secondLevel
plist["baseMaterial"] = firstLevel
}
Expand Down

0 comments on commit e0cce2c

Please sign in to comment.