Allow contacts popover to be activated even if app isn't foregrounded
This commit is contained in:
parent
1c9c7ef7ae
commit
44553875d0
5 changed files with 118 additions and 70 deletions
|
@ -20,7 +20,7 @@ use gpui::{
|
|||
geometry::vector::vec2f,
|
||||
impl_actions,
|
||||
platform::{WindowBounds, WindowOptions},
|
||||
AssetSource, AsyncAppContext, TitlebarOptions, ViewContext, WindowLevel,
|
||||
AssetSource, AsyncAppContext, TitlebarOptions, ViewContext, WindowKind,
|
||||
};
|
||||
use language::Rope;
|
||||
pub use lsp;
|
||||
|
@ -336,7 +336,8 @@ pub fn build_window_options() -> WindowOptions<'static> {
|
|||
traffic_light_position: Some(vec2f(8., 8.)),
|
||||
}),
|
||||
center: false,
|
||||
level: WindowLevel::Normal,
|
||||
kind: WindowKind::Normal,
|
||||
is_movable: true,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue