diff options
author | 2021-10-20 19:06:53 +0700 | |
---|---|---|
committer | 2021-10-20 19:18:40 +0700 | |
commit | d39ad717ed0ab85acbe935d7ab883166b36e7bc7 (patch) | |
tree | 2be868e8d040a1cfa8c6d5bae7c16b1c3ee88fec /native/src/renderer | |
parent | cc560aca181202e827bfdc9afb6fc9fbe42f54d6 (diff) | |
download | iced-d39ad717ed0ab85acbe935d7ab883166b36e7bc7.tar.gz iced-d39ad717ed0ab85acbe935d7ab883166b36e7bc7.tar.bz2 iced-d39ad717ed0ab85acbe935d7ab883166b36e7bc7.zip |
Wire up styling to `Radio` in `iced_native`
Diffstat (limited to 'native/src/renderer')
-rw-r--r-- | native/src/renderer/null.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/native/src/renderer/null.rs b/native/src/renderer/null.rs index 084b8d6f..40fd5995 100644 --- a/native/src/renderer/null.rs +++ b/native/src/renderer/null.rs @@ -66,13 +66,6 @@ impl renderer::Text for Null { fn fill_text(&mut self, _text: renderer::text::Section<'_, Self::Font>) {} } -impl radio::Renderer for Null { - type Style = (); - - const DEFAULT_SIZE: u16 = 20; - const DEFAULT_SPACING: u16 = 15; -} - impl checkbox::Renderer for Null { type Style = (); |