mirror of
https://github.com/zed-industries/zed.git
synced 2026-07-10 00:13:29 +00:00
copilot_ui: Fix sign-in window floating above all applications (#59657)
The Copilot code verification window was opened with `WindowKind::PopUp`, which causes the window to float above all other applications. Changed to `WindowKind::Normal` so it stays scoped to Zed. Fixes #51043 Release Notes: - Fixed Copilot sign-in window floating above all other applications instead of being scoped to Zed
This commit is contained in:
parent
e8e479c3c5
commit
7b73d5ccc3
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ fn open_copilot_code_verification_window(copilot: &Entity<Copilot>, window: &Win
|
|||
));
|
||||
cx.open_window(
|
||||
WindowOptions {
|
||||
kind: gpui::WindowKind::PopUp,
|
||||
kind: gpui::WindowKind::Floating,
|
||||
window_bounds: Some(window_bounds),
|
||||
is_resizable: false,
|
||||
is_movable: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue