summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--windows/profilewindow.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/windows/profilewindow.cpp b/windows/profilewindow.cpp
index 332652b..9fada15 100644
--- a/windows/profilewindow.cpp
+++ b/windows/profilewindow.cpp
@@ -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);
}