diff options
author | 2020-04-18 19:53:27 +0200 | |
---|---|---|
committer | 2020-07-08 11:05:15 +0200 | |
commit | e29feef8ba4f95f286039fcc1ca2e53bfe5019c5 (patch) | |
tree | ac3e4e8bce0fcca65cd536f4a821fb5517b84947 /glow | |
parent | ada8d7c77f9e1d4a1de762b514c9610f7e09b17f (diff) | |
download | iced-e29feef8ba4f95f286039fcc1ca2e53bfe5019c5.tar.gz iced-e29feef8ba4f95f286039fcc1ca2e53bfe5019c5.tar.bz2 iced-e29feef8ba4f95f286039fcc1ca2e53bfe5019c5.zip |
Render arrow icon in `ComboBox`
Diffstat (limited to 'glow')
-rw-r--r-- | glow/src/backend.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/glow/src/backend.rs b/glow/src/backend.rs index 8b5b4f9c..e1685816 100644 --- a/glow/src/backend.rs +++ b/glow/src/backend.rs @@ -193,6 +193,7 @@ impl iced_graphics::Backend for Backend { impl backend::Text for Backend { const ICON_FONT: Font = font::ICONS; const CHECKMARK_ICON: char = font::CHECKMARK_ICON; + const ARROW_DOWN_ICON: char = font::ARROW_DOWN_ICON; fn default_size(&self) -> u16 { self.default_text_size |