Add Mm2PL's avatar to contributors list. (#2139)

This commit is contained in:
Mm2PL 2020-10-31 14:52:05 +00:00 committed by GitHub
parent 3c1abbd297
commit ee14492e15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 4 additions and 1 deletions

BIN
resources/avatars/mm2pl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View file

@ -32,7 +32,7 @@ machgo | https://github.com/machgo | | Contributor
TranRed | https://github.com/TranRed | | Contributor
RAnders00 | https://github.com/RAnders00 | | Contributor
YungLPR | https://github.com/leon-richardt | | Contributor
Mm2PL | https://github.com/mm2pl | | Contributor
Mm2PL | https://github.com/mm2pl | :/avatars/mm2pl.png | Contributor
gempir | https://github.com/gempir | | Contributor
mfmarlow | https://github.com/mfmarlow | | Contributor
dnsge | https://github.com/dnsge | | Contributor

View file

@ -1,6 +1,7 @@
<RCC>
<qresource prefix="/">
<file>avatars/fourtf.png</file>
<file>avatars/mm2pl.png</file>
<file>avatars/pajlada.png</file>
<file>avatars/zneix.png</file>
<file>buttons/addSplit.png</file>

View file

@ -5,6 +5,7 @@ namespace chatterino {
Resources2::Resources2()
{
this->avatars.fourtf = QPixmap(":/avatars/fourtf.png");
this->avatars.mm2pl = QPixmap(":/avatars/mm2pl.png");
this->avatars.pajlada = QPixmap(":/avatars/pajlada.png");
this->avatars.zneix = QPixmap(":/avatars/zneix.png");
this->buttons.addSplit = QPixmap(":/buttons/addSplit.png");

View file

@ -10,6 +10,7 @@ public:
struct {
QPixmap fourtf;
QPixmap mm2pl;
QPixmap pajlada;
QPixmap zneix;
} avatars;