summaryrefslogtreecommitdiffstats
path: root/src/sandbox.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2020-10-17 21:10:59 +0200
committerLibravatar GitHub <noreply@github.com>2020-10-17 21:10:59 +0200
commitbefeb3222501c03d412bf8e3f0041afa0d135081 (patch)
tree03f39ceb0bec80f0a7ed9be058761776ba03d6d1 /src/sandbox.rs
parent5d0f7ba3fcaa96dc0509c8e9edc587411c21f3db (diff)
parentae5a2502d676f6065315b19132430243575e934b (diff)
downloadiced-befeb3222501c03d412bf8e3f0041afa0d135081.tar.gz
iced-befeb3222501c03d412bf8e3f0041afa0d135081.tar.bz2
iced-befeb3222501c03d412bf8e3f0041afa0d135081.zip
Merge pull request #569 from hecrj/improvement/hide-null-executor
Remove `executor::Null` from the root public API
Diffstat (limited to 'src/sandbox.rs')
-rw-r--r--src/sandbox.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sandbox.rs b/src/sandbox.rs
index c72b58d8..5a668e39 100644
--- a/src/sandbox.rs
+++ b/src/sandbox.rs
@@ -1,4 +1,3 @@
-use crate::executor;
use crate::{
Application, Color, Command, Element, Error, Settings, Subscription,
};
@@ -172,7 +171,7 @@ impl<T> Application for T
where
T: Sandbox,
{
- type Executor = executor::Null;
+ type Executor = crate::runtime::executor::Null;
type Flags = ();
type Message = T::Message;