From cb8d892724f6859f20d036b8c68d6db3f099fdf0 Mon Sep 17 00:00:00 2001
From: kushagra <kushagrasurana@gmail.com>
Date: Wed, 18 Mar 2015 21:21:58 +0530
Subject: [PATCH] fixed display of contact_dark.svg

---
 src/widget/form/profileform.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/widget/form/profileform.cpp b/src/widget/form/profileform.cpp
index 2eb6d30a9..4aec2b38e 100644
--- a/src/widget/form/profileform.cpp
+++ b/src/widget/form/profileform.cpp
@@ -84,7 +84,7 @@ ProfileForm::ProfileForm(QWidget *parent) :
     bodyUI->qrLabel->setWordWrap(true);
 
     profilePicture = new MaskablePixmapWidget(this, QSize(64, 64), ":/img/avatar_mask.svg");
-    profilePicture->setPixmap(QPixmap(":/img/contact_dark.png"));
+    profilePicture->setPixmap(QPixmap(":/img/contact_dark.svg"));
     profilePicture->setClickable(true);
     connect(profilePicture, SIGNAL(clicked()), this, SLOT(onAvatarClicked()));
     QHBoxLayout *publicGrouplayout = qobject_cast<QHBoxLayout*>(bodyUI->publicGroup->layout());