diff options
author | 2020-12-22 14:58:39 +0100 | |
---|---|---|
committer | 2020-12-22 14:58:39 +0100 | |
commit | f8aef03456ecc185098b6305a8cd0e22f5297d06 (patch) | |
tree | bdd8fd190980840235c4d10365cac98f3a260c21 /native/src/renderer/null.rs | |
parent | a366600e7347c24bbb6679118a12b616a031deff (diff) | |
parent | e815c5bbd72f618ad890e1d3c5a67c811cd07108 (diff) | |
download | iced-f8aef03456ecc185098b6305a8cd0e22f5297d06.tar.gz iced-f8aef03456ecc185098b6305a8cd0e22f5297d06.tar.bz2 iced-f8aef03456ecc185098b6305a8cd0e22f5297d06.zip |
Merge pull request #657 from clarkmoody/feature/pane-grid-title-contents
Generic Element Content in Pane Grid TitleBar
Diffstat (limited to 'native/src/renderer/null.rs')
-rw-r--r-- | native/src/renderer/null.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/native/src/renderer/null.rs b/native/src/renderer/null.rs index 91ee9a28..bea8041c 100644 --- a/native/src/renderer/null.rs +++ b/native/src/renderer/null.rs @@ -276,10 +276,7 @@ impl pane_grid::Renderer for Null { _defaults: &Self::Defaults, _bounds: Rectangle, _style: &Self::Style, - _title: &str, - _title_size: u16, - _title_font: Self::Font, - _title_bounds: Rectangle, + _content: (&Element<'_, Message, Self>, Layout<'_>), _controls: Option<(&Element<'_, Message, Self>, Layout<'_>)>, _cursor_position: Point, ) { |