diff options
author | 2023-04-12 18:47:53 +1200 | |
---|---|---|
committer | 2023-04-12 06:47:53 +0000 | |
commit | 5a056ce0510343621305474af74ade1db028c01a (patch) | |
tree | 424aa80f7151e594ebc5e38fb6445fa33e121ea1 /native/src/window.rs | |
parent | e7549877ef396471df1509bce2b1d85243206022 (diff) | |
download | iced-5a056ce0510343621305474af74ade1db028c01a.tar.gz iced-5a056ce0510343621305474af74ade1db028c01a.tar.bz2 iced-5a056ce0510343621305474af74ade1db028c01a.zip |
add action set icon while running (#1590)
* set windows icon live action
* change get icon to insto raw
* remove mobile docs
* format
* fix format
* add file methods to Icon
* Rename action to `ChangeIcon` and tidy up `Icon` modules
* Fix documentation of `icon::Error`
* Remove unnecessary `\` in `icon` documentation
* Remove `etc.` from `Icon` documentation
---------
Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com>
Diffstat (limited to 'native/src/window.rs')
-rw-r--r-- | native/src/window.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/window.rs b/native/src/window.rs index a5cdc8ce..1ae89dba 100644 --- a/native/src/window.rs +++ b/native/src/window.rs @@ -5,8 +5,11 @@ mod mode; mod redraw_request; mod user_attention; +pub mod icon; + pub use action::Action; pub use event::Event; +pub use icon::Icon; pub use mode::Mode; pub use redraw_request::RedrawRequest; pub use user_attention::UserAttention; |