Fix invisible chat icons (#10406)

As of #10393 some icons in the chat were invisible, looking at the icons
I noticed that the viewport was actually 800x800, I scaled that down to
16x16 and now they work fine again.

Also remove the `reply_arrow_left` icon because it is not used at all.

Thanks to @RemcoSmitsDev for noticing.

I don't have any expertise in svg's, so if something is off about the
svg markup reach out to me.

Release Notes:

- N/A
This commit is contained in:
Bennet Bo Fenner 2024-04-11 18:36:58 +02:00 committed by GitHub
parent 2d21f6debf
commit 78d6beee80
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 65 deletions

View file

@ -103,7 +103,6 @@ pub enum IconName {
ReplaceNext,
Return,
ReplyArrowRight,
ReplyArrowLeft,
Settings,
Screen,
SelectAll,
@ -200,7 +199,6 @@ impl IconName {
IconName::ReplaceNext => "icons/replace_next.svg",
IconName::Return => "icons/return.svg",
IconName::ReplyArrowRight => "icons/reply_arrow_right.svg",
IconName::ReplyArrowLeft => "icons/reply_arrow_left.svg",
IconName::Settings => "icons/file_icons/settings.svg",
IconName::Screen => "icons/desktop.svg",
IconName::SelectAll => "icons/select_all.svg",