From aceec8ba5cd793fa0d57cde6df5c3237bd8165ff Mon Sep 17 00:00:00 2001 From: claude-bot Date: Mon, 4 May 2026 15:40:29 +0900 Subject: [PATCH] Increase launcher UI scale --- app/assets/js/scripts/uicore.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/js/scripts/uicore.js b/app/assets/js/scripts/uicore.js index fa6454d..9e4abb3 100644 --- a/app/assets/js/scripts/uicore.js +++ b/app/assets/js/scripts/uicore.js @@ -37,6 +37,7 @@ webFrame.setVisualZoomLevelLimits(1, 1) const BASE_WINDOW_WIDTH = 1400 const BASE_WINDOW_HEIGHT = 860 +const UI_SCALE_MULTIPLIER = 1.12 let responsiveLayoutFrame = null let lastAppliedZoomFactor = null @@ -74,7 +75,7 @@ function applyResponsiveLayout(){ const currentWindow = remote.getCurrentWindow() const contentBounds = currentWindow.getContentBounds() const scale = clamp( - Math.min(contentBounds.width / BASE_WINDOW_WIDTH, contentBounds.height / BASE_WINDOW_HEIGHT), + Math.min(contentBounds.width / BASE_WINDOW_WIDTH, contentBounds.height / BASE_WINDOW_HEIGHT) * UI_SCALE_MULTIPLIER, 0.72, 1.45 )