From accbc732c53ae52533fefa66bf9499a05db231e8 Mon Sep 17 00:00:00 2001 From: sewn Date: Sat, 28 Oct 2023 19:28:30 +0300 Subject: [PATCH] internal/splash: perform ActionCenter --- internal/splash/splash.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/splash/splash.go b/internal/splash/splash.go index 0f96c5ab..701dfd99 100644 --- a/internal/splash/splash.go +++ b/internal/splash/splash.go @@ -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, } }