summaryrefslogtreecommitdiffstats
path: root/src/sandbox.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sandbox.rs')
-rw-r--r--src/sandbox.rs9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/sandbox.rs b/src/sandbox.rs
index cb3cf624..a0bb316e 100644
--- a/src/sandbox.rs
+++ b/src/sandbox.rs
@@ -1,6 +1,5 @@
use crate::{
- Application, Clipboard, Color, Command, Element, Error, Settings,
- Subscription,
+ Application, Color, Command, Element, Error, Settings, Subscription,
};
/// A sandboxed [`Application`].
@@ -162,11 +161,7 @@ where
T::title(self)
}
- fn update(
- &mut self,
- message: T::Message,
- _clipboard: &mut Clipboard,
- ) -> Command<T::Message> {
+ fn update(&mut self, message: T::Message) -> Command<T::Message> {
T::update(self, message);
Command::none()