Don't focus incoming call and project shared notification windows
This commit is contained in:
parent
86057ab071
commit
d275474b23
5 changed files with 10 additions and 1 deletions
|
@ -152,6 +152,7 @@ pub struct WindowOptions<'a> {
|
|||
pub bounds: WindowBounds,
|
||||
pub titlebar: Option<TitlebarOptions<'a>>,
|
||||
pub center: bool,
|
||||
pub focus: bool,
|
||||
pub kind: WindowKind,
|
||||
pub is_movable: bool,
|
||||
pub screen: Option<Rc<dyn Screen>>,
|
||||
|
@ -296,6 +297,7 @@ impl<'a> Default for WindowOptions<'a> {
|
|||
traffic_light_position: Default::default(),
|
||||
}),
|
||||
center: false,
|
||||
focus: true,
|
||||
kind: WindowKind::Normal,
|
||||
is_movable: true,
|
||||
screen: None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue