mirror of
https://github.com/celisej567/abaddon.git
synced 2026-09-04 11:33:27 +03:00
use checkmark for verified bot flag
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user