Update "View as (Messages,Topics)" menu icons.

This commit is contained in:
John Preston 2023-11-17 10:31:28 +04:00
parent 0ffda016da
commit 96b651c29b
8 changed files with 4 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 745 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 913 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -145,6 +145,8 @@ menuIconAbove: icon {{ "menu/link_above", menuIconColor }};
menuIconBelow: icon {{ "menu/link_below", menuIconColor }};
menuIconEnlarge: icon {{ "menu/link_enlarge", menuIconColor }};
menuIconShrink: icon {{ "menu/link_shrink", menuIconColor }};
menuIconAsTopics: icon {{ "menu/mode_topics", menuIconColor }};
menuIconAsMessages: icon {{ "menu/mode_messages", menuIconColor }};
menuIconTTLAny: icon {{ "menu/auto_delete_plain", menuIconColor }};
menuIconTTLAnyTextPosition: point(11px, 22px);

View file

@ -1152,7 +1152,7 @@ void Filler::addViewAsMessages() {
peer->owner().saveViewAsMessages(forum, true);
}
controller->showPeerHistory(peer->id);
}, &st::menuIconViewReplies);
}, &st::menuIconAsMessages);
}
void Filler::addViewAsTopics() {
@ -1168,7 +1168,7 @@ void Filler::addViewAsTopics() {
peer->owner().saveViewAsMessages(forum, false);
controller->showForum(forum);
}
}, &st::menuIconViewReplies);
}, &st::menuIconAsTopics);
}
void Filler::addSearchTopics() {