From a10b0c7786a3f3d63129500337ba1beecb2a4202 Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Mon, 6 Sep 2021 21:45:40 +0530 Subject: [PATCH] Revert the minimum window size of the NWjs and set the width and height to 1024x768. --- runtime/src/js/pgadmin.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/runtime/src/js/pgadmin.js b/runtime/src/js/pgadmin.js index 9a4606275..5d717b05f 100644 --- a/runtime/src/js/pgadmin.js +++ b/runtime/src/js/pgadmin.js @@ -207,8 +207,10 @@ function launchPgAdminWindow() { 'frame': true, 'position': 'center', 'resizable': true, - 'min_width': 1024, - 'min_height': 768, + 'min_width': 640, + 'min_height': 480, + 'width': 1024, + 'height': 768, 'focus': true, 'show': false, }, (pgadminWindow)=> {