summaryrefslogtreecommitdiffstats
path: root/examples/layout/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--examples/layout/src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/layout/src/main.rs b/examples/layout/src/main.rs
index fc3a1f82..371f2ae2 100644
--- a/examples/layout/src/main.rs
+++ b/examples/layout/src/main.rs
@@ -10,8 +10,7 @@ use iced::{
};
pub fn main() -> iced::Result {
- iced::sandbox(Layout::update, Layout::view)
- .title(Layout::title)
+ iced::sandbox(Layout::title, Layout::update, Layout::view)
.subscription(Layout::subscription)
.theme(Layout::theme)
.run()