Attach tester to daemon
This commit is contained in:
parent
0a34496c79
commit
25a96f8efc
2 changed files with 21 additions and 14 deletions
|
|
@ -65,10 +65,15 @@ where
|
|||
}
|
||||
|
||||
fn window(&self) -> Option<window::Settings> {
|
||||
self.program.window().map(|window| window::Settings {
|
||||
size: window.size + Size::new(300.0, 80.0),
|
||||
..window
|
||||
})
|
||||
Some(
|
||||
self.program
|
||||
.window()
|
||||
.map(|window| window::Settings {
|
||||
size: window.size + Size::new(300.0, 80.0),
|
||||
..window
|
||||
})
|
||||
.unwrap_or_default(),
|
||||
)
|
||||
}
|
||||
|
||||
fn boot(&self) -> (Self::State, Task<Self::Message>) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue