summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2022-12-15 05:28:11 +0100
committerLibravatar GitHub <noreply@github.com>2022-12-15 05:28:11 +0100
commitd2d18479acd987b4a4f6a125c0dda7b2a6661df4 (patch)
treec93a370639111a76ce64a9b9489ccd430df812a6 /src
parente0c728c62c6fd9496de1d442e7476e24fc5e9023 (diff)
parentb5ab50b2a8a869d8d433d9e13878c1cf1d721414 (diff)
downloadiced-d2d18479acd987b4a4f6a125c0dda7b2a6661df4.tar.gz
iced-d2d18479acd987b4a4f6a125c0dda7b2a6661df4.tar.bz2
iced-d2d18479acd987b4a4f6a125c0dda7b2a6661df4.zip
Merge pull request #1606 from iced-rs/feature/window-close
Implement `window::close` action and remove `should_exit`
Diffstat (limited to 'src')
-rw-r--r--src/application.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/application.rs b/src/application.rs
index 9d6c47e2..f2b7c955 100644
--- a/src/application.rs
+++ b/src/application.rs
@@ -270,8 +270,4 @@ where
fn scale_factor(&self) -> f64 {
self.0.scale_factor()
}
-
- fn should_exit(&self) -> bool {
- self.0.should_exit()
- }
}