diff options
author | 2019-10-11 22:15:39 +0200 | |
---|---|---|
committer | 2019-10-11 22:15:39 +0200 | |
commit | 8846a239cf14edd464b1d09f6d6d57ad9b5c9fc7 (patch) | |
tree | b893c10085e9b6c16b23fd329a1d78d8b13a8e4d /native/src/widget.rs | |
parent | 650d020fde6e684bf3c865de823ace08194b5220 (diff) | |
download | iced-8846a239cf14edd464b1d09f6d6d57ad9b5c9fc7.tar.gz iced-8846a239cf14edd464b1d09f6d6d57ad9b5c9fc7.tar.bz2 iced-8846a239cf14edd464b1d09f6d6d57ad9b5c9fc7.zip |
Rename `Renderer::Primitive` to `Renderer::Output`
Diffstat (limited to 'native/src/widget.rs')
-rw-r--r-- | native/src/widget.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs index b7181c1b..bcef2665 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -77,7 +77,7 @@ where renderer: &mut Renderer, layout: Layout<'_>, cursor_position: Point, - ) -> Renderer::Primitive; + ) -> Renderer::Output; /// Computes the _layout_ hash of the [`Widget`]. /// |