Skip to content

Commit

Permalink
style: renaming iconSeed
Browse files Browse the repository at this point in the history
  • Loading branch information
b00f committed May 20, 2023
1 parent c68cda7 commit fe22629
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/gtk/icons.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var (
iconClose []byte

//go:embed assets/icons/send.svg
sendSeed []byte
iconSendSeed []byte
)

func pixbufToIcon16(pixbuf *gdk.Pixbuf) *gtk.Image {
Expand Down Expand Up @@ -73,6 +73,6 @@ func SeedIcon() *gtk.Image {
}

func SendIcon() *gtk.Image {
pixbuf, _ := gdk.PixbufNewFromDataOnly(sendSeed)
pixbuf, _ := gdk.PixbufNewFromDataOnly(iconSend)
return pixbufToIcon16(pixbuf)
}

0 comments on commit fe22629

Please sign in to comment.