Remove Clipboard export in iced

This commit is contained in:
Héctor Ramón Jiménez 2021-09-02 13:47:03 +07:00
parent c9711ff48f
commit f0686eae0e
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ use crate::{Color, Command, Element, Executor, Menu, Settings, Subscription};
/// says "Hello, world!": /// says "Hello, world!":
/// ///
/// ```no_run /// ```no_run
/// use iced::{executor, Application, Clipboard, Command, Element, Settings, Text}; /// use iced::{executor, Application, Command, Element, Settings, Text};
/// ///
/// pub fn main() -> iced::Result { /// pub fn main() -> iced::Result {
/// Hello::run(Settings::default()) /// Hello::run(Settings::default())

View file

@ -245,7 +245,7 @@ pub use sandbox::Sandbox;
pub use settings::Settings; pub use settings::Settings;
pub use runtime::{ pub use runtime::{
futures, menu, Align, Background, Clipboard, Color, Command, Font, futures, menu, Align, Background, Color, Command, Font,
HorizontalAlignment, Length, Menu, Point, Rectangle, Size, Subscription, HorizontalAlignment, Length, Menu, Point, Rectangle, Size, Subscription,
Vector, VerticalAlignment, Vector, VerticalAlignment,
}; };