diff options
author | 2022-08-18 15:03:56 +0200 | |
---|---|---|
committer | 2022-08-18 15:03:56 +0200 | |
commit | da7e8598406fcde2a33ea749d561a2f10dbb5407 (patch) | |
tree | 489f7cfbb134b8736290f30010fe680a31c90423 /winit/src/mode.rs | |
parent | 07cbed106467097543ff33d3b34e0e1ca6f695ae (diff) | |
parent | 11f5527d7645619f49b030e30485f24ac637efbd (diff) | |
download | iced-da7e8598406fcde2a33ea749d561a2f10dbb5407.tar.gz iced-da7e8598406fcde2a33ea749d561a2f10dbb5407.tar.bz2 iced-da7e8598406fcde2a33ea749d561a2f10dbb5407.zip |
Merge pull request #1389 from iced-rs/refactor-window-mode
Replace `window::Mode` with window commands
Diffstat (limited to 'winit/src/mode.rs')
-rw-r--r-- | winit/src/mode.rs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/winit/src/mode.rs b/winit/src/mode.rs deleted file mode 100644 index fdce8e23..00000000 --- a/winit/src/mode.rs +++ /dev/null @@ -1,12 +0,0 @@ -/// The mode of a window-based application. -#[derive(Debug, Clone, Copy, PartialEq, Eq)] -pub enum Mode { - /// The application appears in its own window. - Windowed, - - /// The application takes the whole screen of its current monitor. - Fullscreen, - - /// The application is hidden - Hidden, -} |