Fixed issue with window ID on winit

This commit is contained in:
bungoboingo 2023-01-02 18:14:31 -08:00
parent 942f1c91af
commit f43419d475
3 changed files with 63 additions and 52 deletions

View file

@ -8,5 +8,6 @@ publish = false
[dependencies]
iced = { path = "../..", features = ["debug", "multi_window"] }
env_logger = "0.10.0"
iced_native = { path = "../../native" }
iced_lazy = { path = "../../lazy" }

View file

@ -15,6 +15,8 @@ use iced_native::{event, subscription, Event};
use std::collections::HashMap;
pub fn main() -> iced::Result {
env_logger::init();
Example::run(Settings::default())
}