Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update github.com/lxn/walk version #14905

Merged
merged 2 commits into from
Jan 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/systray/systray.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func isUserAnAdmin() (bool, error) {
}

func showCustomMessage(notifyIcon *walk.NotifyIcon, message string) {
if err := notifyIcon.ShowCustom("Datadog Agent Manager", message); err != nil {
if err := notifyIcon.ShowCustom("Datadog Agent Manager", message, nil); err != nil {
log.Warnf("Failed to show custom message %v", err)
}
}
Expand Down Expand Up @@ -251,7 +251,7 @@ func main() {
log.Warnf("Failed to load icon %v", err)
}
// Create the notify icon and make sure we clean it up on exit.
ni, err = walk.NewNotifyIcon()
ni, err = walk.NewNotifyIcon(mw)
if err != nil {
log.Errorf("Failed to create newNotifyIcon %v", err)
os.Exit(2)
Expand Down
5 changes: 2 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ replace (
github.com/cihub/seelog => github.com/cihub/seelog v0.0.0-20151216151435-d2c6e5aa9fbf // v2.6
github.com/coreos/go-systemd => github.com/coreos/go-systemd v0.0.0-20180202092358-40e2722dffea
github.com/docker/distribution => github.com/docker/distribution v2.8.1+incompatible
github.com/lxn/walk => github.com/lxn/walk v0.0.0-20180521183810-02935bac0ab8
github.com/mholt/archiver => github.com/mholt/archiver v2.0.1-0.20171012052341-26cf5bb32d07+incompatible
github.com/spf13/cast => github.com/DataDog/cast v1.3.1-0.20190301154711-1ee8c8bd14a3
github.com/ugorji/go => github.com/ugorji/go v1.1.7
Expand Down Expand Up @@ -131,8 +130,8 @@ require (
github.com/itchyny/gojq v0.12.10
github.com/json-iterator/go v1.1.12
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
github.com/lxn/walk v0.0.0-20191128110447-55ccb3a9f5c1
github.com/lxn/win v0.0.0-20191128105842-2da648fda5b4
github.com/lxn/walk v0.0.0-20210112085537-c389da54e794
github.com/lxn/win v0.0.0-20210218163916-a377121e959e
github.com/mailru/easyjson v0.7.7
github.com/mdlayher/netlink v1.6.2
github.com/mholt/archiver/v3 v3.5.1
Expand Down
9 changes: 5 additions & 4 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.