From d56e4f625b22faf301a4d57b729556df383414be Mon Sep 17 00:00:00 2001 From: Tarunkumar Date: Tue, 2 Dec 2025 21:39:03 +0530 Subject: [PATCH] fixed min width issue so two windows can be used in parallel (#5863) * fixed min width issue so two windows can be used in parallel * updated the min height as well, so that Bruno can be viewed in quarter window on screen --------- Co-authored-by: Tarunkumar N Bagmar Co-authored-by: Anoop M D --- .gitignore | 5 ++++- packages/bruno-electron/src/index.js | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index eb8f8e0fa..0ff231d00 100644 --- a/.gitignore +++ b/.gitignore @@ -52,7 +52,10 @@ bruno.iml # Playwright /blob-report/ -# packages +# Development plan files +*.plan.md + +# packages dist packages/bruno-filestore/dist packages/bruno-requests/dist packages/bruno-schema-types/dist diff --git a/packages/bruno-electron/src/index.js b/packages/bruno-electron/src/index.js index ea20963eb..47453fbea 100644 --- a/packages/bruno-electron/src/index.js +++ b/packages/bruno-electron/src/index.js @@ -101,8 +101,8 @@ app.on('ready', async () => { y, width, height, - minWidth: 1000, - minHeight: 640, + minWidth: 700, + minHeight: 400, show: false, webPreferences: { nodeIntegration: true,