summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-01-12 02:59:08 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-01-12 02:59:08 +0100
commit7354f68b3ca345767de3f09dccddf168493977bf (patch)
treea09626c11a25ab4260c576733f1700e9ad12894b /src
parent7ccd87c36b54e0d53f65f5774f140a0528ae4504 (diff)
downloadiced-7354f68b3ca345767de3f09dccddf168493977bf.tar.gz
iced-7354f68b3ca345767de3f09dccddf168493977bf.tar.bz2
iced-7354f68b3ca345767de3f09dccddf168493977bf.zip
Draft `Shell:request_redraw` API
... and implement `TextInput` cursor blink :tada:
Diffstat (limited to '')
-rw-r--r--src/application.rs7
-rw-r--r--src/sandbox.rs11
2 files changed, 0 insertions, 18 deletions
diff --git a/src/application.rs b/src/application.rs
index f2b7c955..6d68779b 100644
--- a/src/application.rs
+++ b/src/application.rs
@@ -180,13 +180,6 @@ pub trait Application: Sized {
1.0
}
- /// Returns whether the [`Application`] should be terminated.
- ///
- /// By default, it returns `false`.
- fn should_exit(&self) -> bool {
- false
- }
-
/// Runs the [`Application`].
///
/// On native platforms, this method will take control of the current thread
diff --git a/src/sandbox.rs b/src/sandbox.rs
index 47bad831..40c699d9 100644
--- a/src/sandbox.rs
+++ b/src/sandbox.rs
@@ -140,13 +140,6 @@ pub trait Sandbox {
1.0
}
- /// Returns whether the [`Sandbox`] should be terminated.
- ///
- /// By default, it returns `false`.
- fn should_exit(&self) -> bool {
- false
- }
-
/// Runs the [`Sandbox`].
///
/// On native platforms, this method will take control of the current thread
@@ -203,8 +196,4 @@ where
fn scale_factor(&self) -> f64 {
T::scale_factor(self)
}
-
- fn should_exit(&self) -> bool {
- T::should_exit(self)
- }
}