Open
Description
just a heads-up for you. I'm the maintainer of the signal-desktop package in alpine linux.
coincidentally 2 things happened at once, so I'm not sure which one was the problem, but I'm guessing the former:
- upgrade of electron to 24
- upgrade of signal-desktop to 6.13.0 (well, an attempt)
with both these changes, the window of signal-desktop stopped appearing for me.
it shows correctly with this patch:
--- ./app/main.ts.orig
+++ ./app/main.ts
@@ -721,7 +721,7 @@
const titleBarOverlay = await getTitleBarOverlay();
const windowOptions: Electron.BrowserWindowConstructorOptions = {
- show: false,
+ show: true,
width: DEFAULT_WIDTH,
height: DEFAULT_HEIGHT,
minWidth: MIN_WIDTH,