Skip to content

Commit

Permalink
internal/splash: perform ActionCenter
Browse files Browse the repository at this point in the history
  • Loading branch information
apprehensions committed Oct 28, 2023
1 parent 7375375 commit accbc73
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/splash/splash.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,14 @@ func New(cfg *config.Splash) *Splash {
height := unit.Dp(240)

logo, _, _ := image.Decode(bytes.NewReader(vinegarlogo))
w := window(width, height)
w.Perform(system.ActionCenter)

return &Splash{
logo: logo,
Theme: theme(cfg),
Config: cfg,
Window: window(width, height),
Window: w,
}
}

Expand Down

0 comments on commit accbc73

Please sign in to comment.