diff options
Diffstat (limited to '')
| -rw-r--r-- | examples/todos/src/main.rs (renamed from examples/todos.rs) | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/examples/todos.rs b/examples/todos/src/main.rs index 4166f75a..c6ddf2ea 100644 --- a/examples/todos.rs +++ b/examples/todos/src/main.rs @@ -38,6 +38,7 @@ enum Message {  }  impl Application for Todos { +    type Executor = iced_futures::executor::AsyncStd;      type Message = Message;      fn new() -> (Todos, Command<Message>) { @@ -450,7 +451,7 @@ fn empty_message(message: &str) -> Element<'static, Message> {  // Fonts  const ICONS: Font = Font::External {      name: "Icons", -    bytes: include_bytes!("resources/icons.ttf"), +    bytes: include_bytes!("../fonts/icons.ttf"),  };  fn icon(unicode: char) -> Text { | 
