mirror of https://github.com/wayvr-org/wayvr.git
dont show on startup
This commit is contained in:
parent
fd2b96c0d6
commit
041dc44a58
|
|
@ -52,14 +52,14 @@ where
|
|||
|
||||
let mut keyboard = create_keyboard(&app);
|
||||
keyboard.state.show_hide = true;
|
||||
keyboard.state.want_visible = true;
|
||||
keyboard.state.want_visible = false;
|
||||
overlays.insert(keyboard.state.id, keyboard);
|
||||
|
||||
let mut first = true;
|
||||
for mut screen in screens {
|
||||
if first {
|
||||
screen.state.show_hide = true;
|
||||
screen.state.want_visible = true;
|
||||
screen.state.want_visible = false;
|
||||
first = false;
|
||||
}
|
||||
overlays.insert(screen.state.id, screen);
|
||||
|
|
|
|||
Loading…
Reference in New Issue