set disabled icon to black

- set version to 0.1.0
This commit is contained in:
Aaron Bieber 2024-10-29 12:54:58 -06:00
parent 52c5b782d8
commit e99ff27549
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View File

@ -23,7 +23,7 @@
{
fynado = with pkgs; pkgs.buildGoModule rec {
pname = "fynado";
version = "v0.0.0";
version = "v0.1.0";
src = ./.;
vendorHash = "sha256-orfRl0pOiHMwleZci8riKrksbXGzOUmIk+JmP2sf7PA=";

View File

@ -4,6 +4,7 @@ import (
"bytes"
"fmt"
"image"
"image/color"
"image/png"
"math"
)
@ -57,7 +58,7 @@ func (m CountIcon) Draw(percentage float64) CountIcon {
m.data.Set(x, y, sixes)
}
} else {
m.data.Set(x, y, sixes)
m.data.Set(x, y, color.Black)
}
}
}