chore: linting

This commit is contained in:
zhom
2026-08-24 00:52:17 +04:00
parent 33d3af0386
commit 90f1bf2569
+1 -1
View File
@@ -188,7 +188,7 @@ fn generate_tray_icons() {
// macOS will automatically handle light/dark mode by inverting the icon
// For template icons: RGB should be 0,0,0 (black) and alpha controls visibility
let data = pixmap.data_mut();
for pixel in data.chunks_exact_mut(4) {
for pixel in data.as_chunks_mut::<4>().0 {
// Keep the original alpha (shows where icon content is)
// but make the color black for template icon format
pixel[0] = 0; // R