Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Document that `window::Action::Move` is unsupported on Wayland | 2022-09-15 | 1 | -0/+2 | |
| | | | | | | | | | https://docs.rs/winit/latest/winit/window/struct.Window.html#method.set_outer_position notes that this isn't supported on Wayland. Wayland by design doesn't allow applications to position windows arbitrarily. GTK4 in comparison removed `gtk_window_move()` (which naturally didn't work on Wayland). | ||||
* | Implement `SetMode` and `FetchMode` window actions | 2022-08-18 | 1 | -2/+45 | |
| | |||||
* | Make `Command` implementations platform-specific | 2021-09-02 | 1 | -0/+18 | |
This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!) |