summaryrefslogtreecommitdiffstats
path: root/src/window (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixes #539: Allow windows to be set always_on_topLibravatar Tom2020-09-281-1/+6
|
* Add 'transparent' in window settingLibravatar Katherine Philip2020-08-171-0/+5
|
* Move `Icon` to `iced` crate and introduce `Error`Libravatar Héctor Ramón Jiménez2020-07-012-4/+138
|
* Add support for setting window iconLibravatar Francesco Pasa2020-07-011-1/+6
| | | | | | This adds a new property from Settings::window::iconand a Icon struct which can be converted to winit::window::Icon. It also adds code to display this icon in Application::run. Due to the fact that the Icon struct is non copyable, I also had to remove the Copy trait from all Settings, both in `iced` and `iced_winit`.
* Add `min_size` and `max_size` to `window::Settings`Libravatar Héctor Ramón Jiménez2020-06-251-1/+23
|
* Expose `window::Mode` in `iced`Libravatar Héctor Ramón Jiménez2020-01-162-0/+31
Although the Fullscreen API in the Web platform has some limitations, it is still useful to be able to support fullscreen on the native side.