فهرست منبع

feat: always center selected item in selection dialogs (resolves #10209) (#10207)

Ariane Emory 4 هفته پیش
والد
کامیت
225b72ca36
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      packages/opencode/src/cli/cmd/tui/ui/dialog-select.tsx

+ 1 - 1
packages/opencode/src/cli/cmd/tui/ui/dialog-select.tsx

@@ -144,7 +144,7 @@ export function DialogSelect<T>(props: DialogSelectProps<T>) {
     let next = store.selected + direction
     if (next < 0) next = flat().length - 1
     if (next >= flat().length) next = 0
-    moveTo(next)
+    moveTo(next, true)
   }
 
   function moveTo(next: number, center = false) {