diff options
author | 2019-11-24 11:34:30 +0100 | |
---|---|---|
committer | 2019-11-24 11:34:30 +0100 | |
commit | 149fd2aa1fa86858c7c1dcec8fd844caa78cec94 (patch) | |
tree | a199cf8d2caaf6aa60e48e93d6dd0688969d43b0 /examples/todos.rs | |
parent | 9712b319bb7a32848001b96bd84977430f14b623 (diff) | |
parent | 47196c9007d12d3b3e0036ffabe3bf6d14ff4523 (diff) | |
download | iced-149fd2aa1fa86858c7c1dcec8fd844caa78cec94.tar.gz iced-149fd2aa1fa86858c7c1dcec8fd844caa78cec94.tar.bz2 iced-149fd2aa1fa86858c7c1dcec8fd844caa78cec94.zip |
Merge pull request #65 from hecrj/improvement/docs
Documentation
Diffstat (limited to 'examples/todos.rs')
-rw-r--r-- | examples/todos.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/examples/todos.rs b/examples/todos.rs index a1dfc5aa..a73c45ce 100644 --- a/examples/todos.rs +++ b/examples/todos.rs @@ -1,7 +1,7 @@ use iced::{ - button, scrollable, text::HorizontalAlignment, text_input, Align, - Application, Background, Button, Checkbox, Color, Column, Command, - Container, Element, Font, Length, Row, Scrollable, Text, TextInput, + button, scrollable, text_input, Align, Application, Background, Button, + Checkbox, Color, Column, Command, Container, Element, Font, + HorizontalAlignment, Length, Row, Scrollable, Text, TextInput, }; use serde::{Deserialize, Serialize}; @@ -549,7 +549,8 @@ impl SavedState { .map_err(|_| SaveError::WriteError)?; // This is a simple way to save at most once every couple seconds - // We will be able to get rid of it once we implement event subscriptions + // We will be able to get rid of it once we implement event + // subscriptions std::thread::sleep(std::time::Duration::from_secs(2)); Ok(()) |