diff options
Diffstat (limited to 'examples/download_progress/src/main.rs')
-rw-r--r-- | examples/download_progress/src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/download_progress/src/main.rs b/examples/download_progress/src/main.rs index bddf0d28..06ebb9c6 100644 --- a/examples/download_progress/src/main.rs +++ b/examples/download_progress/src/main.rs @@ -4,9 +4,8 @@ use iced::widget::{button, column, container, progress_bar, text, Column}; use iced::{Alignment, Element, Length, Subscription}; pub fn main() -> iced::Result { - iced::sandbox(Example::update, Example::view) + iced::sandbox("Download Progress - Iced", Example::update, Example::view) .subscription(Example::subscription) - .title("Download Progress - Iced") .run() } |