summaryrefslogtreecommitdiffstats
path: root/examples/url_handler/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/url_handler/src/main.rs')
-rw-r--r--examples/url_handler/src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/url_handler/src/main.rs b/examples/url_handler/src/main.rs
index f8c18200..f16b9051 100644
--- a/examples/url_handler/src/main.rs
+++ b/examples/url_handler/src/main.rs
@@ -3,9 +3,8 @@ use iced::widget::{container, text};
use iced::{Element, Length, Subscription};
pub fn main() -> iced::Result {
- iced::sandbox(App::update, App::view)
+ iced::sandbox("URL Handler - Iced", App::update, App::view)
.subscription(App::subscription)
- .title("URL Handler - Iced")
.run()
}