Skip to content

Commit

Permalink
fit to ime
Browse files Browse the repository at this point in the history
  • Loading branch information
KentaTheBugMaker committed Nov 12, 2023
1 parent f6ee02e commit 6a358cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions examples/loading_spinners/src/circular.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
use iced::advanced::layout;
use iced::advanced::renderer;
use iced::advanced::widget::tree::{self, Tree};
use iced::advanced::IME;
use iced::advanced::{Clipboard, Layout, Renderer, Shell, Widget};
use iced::event;
use iced::mouse;
Expand Down Expand Up @@ -272,6 +273,7 @@ where
_cursor: mouse::Cursor,
_renderer: &iced::Renderer<Theme>,
_clipboard: &mut dyn Clipboard,
_ime: &dyn IME,
shell: &mut Shell<'_, Message>,
_viewport: &Rectangle,
) -> event::Status {
Expand Down
3 changes: 2 additions & 1 deletion examples/loading_spinners/src/linear.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Show a linear progress indicator.
use iced::advanced::layout;
use iced::advanced::renderer::{self, Quad};
use iced::advanced::widget::tree::{self, Tree};
use iced::advanced::{layout, IME};
use iced::advanced::{Clipboard, Layout, Shell, Widget};
use iced::event;
use iced::mouse;
Expand Down Expand Up @@ -193,6 +193,7 @@ where
_cursor: mouse::Cursor,
_renderer: &Renderer,
_clipboard: &mut dyn Clipboard,
_ime: &dyn IME,
shell: &mut Shell<'_, Message>,
_viewport: &Rectangle,
) -> event::Status {
Expand Down

0 comments on commit 6a358cf

Please sign in to comment.