summaryrefslogtreecommitdiffstats
path: root/examples/styling
diff options
context:
space:
mode:
Diffstat (limited to 'examples/styling')
-rw-r--r--examples/styling/src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/styling/src/main.rs b/examples/styling/src/main.rs
index c00c8caf..110bd3b8 100644
--- a/examples/styling/src/main.rs
+++ b/examples/styling/src/main.rs
@@ -6,9 +6,8 @@ use iced::widget::{
use iced::{Alignment, Element, Length, Theme};
pub fn main() -> iced::Result {
- iced::sandbox(Styling::update, Styling::view)
+ iced::sandbox("Styling - Iced", Styling::update, Styling::view)
.theme(Styling::theme)
- .title("Styling - Iced")
.run()
}