diff options
Diffstat (limited to '')
-rw-r--r-- | examples/screenshot/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/screenshot/src/main.rs b/examples/screenshot/src/main.rs index 0d77d316..0f1d8dce 100644 --- a/examples/screenshot/src/main.rs +++ b/examples/screenshot/src/main.rs @@ -183,12 +183,12 @@ impl Application for Example { } let png_button = if !self.png_saving { - button("Save to png.") + button("Save to png") .style(Button::Secondary) .padding([10, 20, 10, 20]) .on_press(Message::Png) } else { - button("Saving..") + button("Saving...") .style(Button::Secondary) .padding([10, 20, 10, 20]) }; |