Skip to content

Commit 685bf3a

Browse files
author
Loïc Mangeonjean
committed
fix: fix quickinput standalone position
1 parent 7a97a52 commit 685bf3a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2+
From: =?UTF-8?q?Lo=C3=AFc=20Mangeonjean?= <loic@coderpad.io>
3+
Date: Mon, 3 Mar 2025 15:10:33 +0100
4+
Subject: [PATCH] fix: fix standalone editor quick input location
5+
6+
---
7+
.../browser/quickInput/standaloneQuickInputService.ts | 2 +-
8+
1 file changed, 1 insertion(+), 1 deletion(-)
9+
10+
diff --git a/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.ts b/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.ts
11+
index 91f910e3776..4ab4d994340 100644
12+
--- a/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.ts
13+
+++ b/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.ts
14+
@@ -200,7 +200,7 @@ export class QuickInputEditorWidget implements IOverlayWidget {
15+
}
16+
17+
getPosition(): IOverlayWidgetPosition | null {
18+
- return { preference: OverlayWidgetPositionPreference.TOP_CENTER };
19+
+ return { preference: null };
20+
}
21+
22+
dispose(): void {

0 commit comments

Comments
 (0)