fix(desktop): 위젯 picker OS 창 크기 확대 및 논리 px 보정

picker 표시 전 OS 창을 820×900(논리 px)으로 확장하고 PhysicalSize/
LogicalSize 혼용 버그를 수정해 macOS·Windows에서 목록이 넓게 보이게 합니다.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Macbook
2026-06-15 16:53:24 +09:00
parent 5086d9e6bd
commit 046ef0a458
4 changed files with 141 additions and 39 deletions
+2 -2
View File
@@ -25,8 +25,8 @@ export const FLOATING_WIDGET_CELL_MIN_W = 140;
export const FLOATING_WIDGET_CELL_MIN_H = 100;
export const FLOATING_WIDGET_GRID_GAP = 1;
/** Tauri 네이티브 위젯 창 — 위젯 선택 팝업 표시용 OS 창 크기 */
export const NATIVE_WIDGET_PICKER_WINDOW = { width: 740, height: 860 } as const;
/** Tauri 네이티브 위젯 창 — 위젯 선택 팝업 표시용 OS 창 크기 (논리 px, 웹 AppPopup과 유사) */
export const NATIVE_WIDGET_PICKER_WINDOW = { width: 820, height: 900 } as const;
export interface FloatingWidgetInstance {
id: string;