diff options
| author | Polesznyák Márk <contact@pml68.dev> | 2025-10-20 13:35:38 +0200 |
|---|---|---|
| committer | Polesznyák Márk <contact@pml68.dev> | 2025-10-20 13:36:22 +0200 |
| commit | 6107291a672ffc912d2cfae9ffa33dcfc7b50399 (patch) | |
| tree | a266c6d8f21490e4899fee905df1534a99068bd2 /examples/rich/src/main.rs | |
| parent | ci(doc): build docs with (diff) | |
| download | iced_selection-6107291a672ffc912d2cfae9ffa33dcfc7b50399.tar.gz | |
feat: add `markdown` example
Diffstat (limited to '')
| -rw-r--r-- | examples/rich/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/rich/src/main.rs b/examples/rich/src/main.rs index 6c47e0f..f8f7414 100644 --- a/examples/rich/src/main.rs +++ b/examples/rich/src/main.rs @@ -20,7 +20,7 @@ impl State { fn update(&mut self, message: Message) { match message { Message::LinkClicked(link) => { - let _ = open::that(&link); + let _ = open::that_in_background(&link); self.link = Some(link); } }; |
