diff --git a/apps/remix-ide/src/app/plugins/templates-selection/templates-selection-plugin.tsx b/apps/remix-ide/src/app/plugins/templates-selection/templates-selection-plugin.tsx index 943021b3ae9..a2519990e01 100644 --- a/apps/remix-ide/src/app/plugins/templates-selection/templates-selection-plugin.tsx +++ b/apps/remix-ide/src/app/plugins/templates-selection/templates-selection-plugin.tsx @@ -136,7 +136,7 @@ export class TemplatesSelectionPlugin extends ViewPlugin { ([]); export const createWindow = async (dir?: string): Promise => { + // reize factor + let resizeFactor = 0.8 + // if the window is too small the size is 100% + if( screen.getPrimaryDisplay().size.width < 2560 || screen.getPrimaryDisplay().size.height < 1440) { + resizeFactor = 1 + } + const width = screen.getPrimaryDisplay().size.width * resizeFactor + const height = screen.getPrimaryDisplay().size.height * resizeFactor + // Create the browser window. const mainWindow = new BrowserWindow({ - width: (isE2E ? 2560 : screen.getPrimaryDisplay().size.width * 0.8), - height: (isE2E ? 1140 : screen.getPrimaryDisplay().size.height * 0.8), + width: (isE2E ? 2560 : width), + height: (isE2E ? 1140 : height), frame: true, webPreferences: { preload: path.join(__dirname, 'preload.js') @@ -100,12 +109,10 @@ app.on('activate', () => { }); const showAbout = () => { - - void dialog.showMessageBox({ title: `About Remix`, - message: `Remix`, - detail: `Remix`, + message: `The Native IDE for Web3 Development.`, + detail: `Remix Desktop version ${app.getVersion()}`, buttons: [], }); };