pull/5370/head
Your Name 5 months ago
parent f3669c1d13
commit 220d220a8c
  1. 4
      apps/remixdesktop/src/main.ts

@ -36,8 +36,8 @@ const windowSet = new Set<BrowserWindow>([]);
export const createWindow = async (dir?: string): Promise<void> => { export const createWindow = async (dir?: string): Promise<void> => {
// Create the browser window. // Create the browser window.
const mainWindow = new BrowserWindow({ const mainWindow = new BrowserWindow({
height: (isE2E ? 1920 : screen.getPrimaryDisplay().size.height * 0.8), height: 1920,
width: (isE2E ? 1080 : screen.getPrimaryDisplay().size.width * 0.8), width: 1080,
frame: true, frame: true,
webPreferences: { webPreferences: {
preload: path.join(__dirname, 'preload.js') preload: path.join(__dirname, 'preload.js')

Loading…
Cancel
Save