mirror of
https://git.freebsd.org/ports.git
synced 2025-06-25 06:30:29 -04:00
11 lines
358 B
TypeScript
11 lines
358 B
TypeScript
--- electron/default_app/default_app.ts.orig 2021-01-22 23:55:24 UTC
|
|
+++ electron/default_app/default_app.ts
|
|
@@ -59,7 +59,7 @@ async function createWindow () {
|
|
show: false
|
|
};
|
|
|
|
- if (process.platform === 'linux') {
|
|
+ if (process.platform === 'linux' || process.platform === 'freebsd') {
|
|
options.icon = path.join(__dirname, 'icon.png');
|
|
}
|
|
|