use checkmark for verified bot flag

This commit is contained in:
ouwou 2021-02-23 03:03:02 -05:00
parent 5406ca7b15
commit 78270889e6

View File

@ -117,7 +117,10 @@ void ProfileWindow::OnFetchProfile(const UserProfileData &data) {
if (name == "unknown") continue;
Glib::RefPtr<Gdk::Pixbuf> pixbuf;
try {
pixbuf = Gdk::Pixbuf::create_from_file("./res/" + name + ".png", 24, 24);
if (name == "verifiedbot")
pixbuf = Gdk::Pixbuf::create_from_file("./res/checkmark.png", 24, 24);
else
pixbuf = Gdk::Pixbuf::create_from_file("./res/" + name + ".png", 24, 24);
} catch (const Glib::Exception &e) {
pixbuf = Abaddon::Get().GetImageManager().GetPlaceholder(24);
}