feat: better icons

fix: mention Solar Icon Pack in README
This commit is contained in:
ZavaruKitsu 2023-08-09 23:36:57 +00:00
parent ae16aa3099
commit 1b00010029
9 changed files with 5 additions and 2 deletions

View file

@ -46,6 +46,7 @@ Make sure you have these components installed with VS Build Tools:
### Very special thanks to
- [Solar Icon Set](https://solariconset.com/)
- [JSON for Modern C++](https://github.com/nlohmann/json)
- [BitConverter](https://github.com/YanjieHe/BitConverter)
- [Not Enough Standards](https://github.com/Alairion/not-enough-standards)

Binary file not shown.

After

Width:  |  Height:  |  Size: 528 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 776 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 479 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 745 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -3,3 +3,5 @@ using "ui/widgets/widgets.style";
ayuGhostIcon: icon {{ "ayu/ghost", menuIconColor }};
ayuMenuIcon: icon {{ "ayu/ayu_menu", menuIconColor }};
ayuLReadMenuIcon: icon {{ "ayu/lread", menuIconColor }};
ayuSReadMenuIcon: icon {{ "ayu/sread", menuIconColor }};

View file

@ -802,7 +802,7 @@ void MainMenu::setupMenu() {
});
addAction(
tr::ayu_LReadMessages(),
{ &st::menuIconMarkRead }
{ &st::ayuLReadMenuIcon }
)->setClickedCallback([=]
{
auto settings = &AyuSettings::getInstance();
@ -816,7 +816,7 @@ void MainMenu::setupMenu() {
});
addAction(
tr::ayu_SReadMessages(),
{ &st::menuIconMarkRead }
{ &st::ayuSReadMenuIcon }
)->setClickedCallback([=]
{
auto box = Box<AyuUi::ConfirmationBox>(controller);