summaryrefslogtreecommitdiffstats
path: root/examples/screenshot
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-06-06 15:59:56 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-06-06 15:59:56 +0200
commitc1021c71758d0c850c7b3fea26075bb83830cb7d (patch)
tree9eb52afff668a848603b14b24b0e7dca989b8621 /examples/screenshot
parentcd15f8305ab1094ff9887f8d8822e385a381ab1c (diff)
downloadiced-c1021c71758d0c850c7b3fea26075bb83830cb7d.tar.gz
iced-c1021c71758d0c850c7b3fea26075bb83830cb7d.tar.bz2
iced-c1021c71758d0c850c7b3fea26075bb83830cb7d.zip
Fix punctuation in `screenshot` example
Diffstat (limited to 'examples/screenshot')
-rw-r--r--examples/screenshot/src/main.rs4
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])
};