diff options
Diffstat (limited to 'src/windows/profile/mutualfriendspane.cpp')
-rw-r--r-- | src/windows/profile/mutualfriendspane.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/windows/profile/mutualfriendspane.cpp b/src/windows/profile/mutualfriendspane.cpp index 339fd71..ca36e1d 100644 --- a/src/windows/profile/mutualfriendspane.cpp +++ b/src/windows/profile/mutualfriendspane.cpp @@ -9,10 +9,9 @@ MutualFriendItem::MutualFriendItem(const UserData &user) m_avatar.set_margin_end(10); - const auto show_animations = Abaddon::Get().GetSettings().GetShowAnimations(); auto &img = Abaddon::Get().GetImageManager(); m_avatar.property_pixbuf() = img.GetPlaceholder(24); - if (user.HasAnimatedAvatar() && show_animations) { + if (user.HasAnimatedAvatar() && Abaddon::Get().GetSettings().ShowAnimations) { auto cb = [this](const Glib::RefPtr<Gdk::PixbufAnimation> &pb) { m_avatar.property_pixbuf_animation() = pb; }; |