summaryrefslogtreecommitdiffstats
path: root/examples/download_progress/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector@hecrj.dev>2024-05-23 13:38:22 +0200
committerLibravatar GitHub <noreply@github.com>2024-05-23 13:38:22 +0200
commit663a081bdd507da0b5ca7d4dc30d78a20b4618af (patch)
tree89482c8d1e3a03e00b3a8151abbb81e30ae5898c /examples/download_progress/src
parent468794d918eb06c1dbebb33c32b10017ad335f05 (diff)
parentd8ba6b0673a33724a177f3a1ba59705527280142 (diff)
downloadiced-663a081bdd507da0b5ca7d4dc30d78a20b4618af.tar.gz
iced-663a081bdd507da0b5ca7d4dc30d78a20b4618af.tar.bz2
iced-663a081bdd507da0b5ca7d4dc30d78a20b4618af.zip
Merge pull request #2338 from derezzedex/feat/text-macro
Introduce `text` macro
Diffstat (limited to 'examples/download_progress/src')
-rw-r--r--examples/download_progress/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/download_progress/src/main.rs b/examples/download_progress/src/main.rs
index e031ac44..7974d5a0 100644
--- a/examples/download_progress/src/main.rs
+++ b/examples/download_progress/src/main.rs
@@ -160,7 +160,7 @@ impl Download {
.into()
}
State::Downloading { .. } => {
- text(format!("Downloading... {current_progress:.2}%")).into()
+ text!("Downloading... {current_progress:.2}%").into()
}
State::Errored => column![
"Something went wrong :(",