diff --git a/widget/friendwidget.cpp b/widget/friendwidget.cpp index 1be5817a4..84866e755 100644 --- a/widget/friendwidget.cpp +++ b/widget/friendwidget.cpp @@ -53,8 +53,6 @@ FriendWidget::FriendWidget(int FriendId, QString id) pal3.setColor(QPalette::Background, QColor(65,65,65,255)); this->setPalette(pal3); - name.setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); - textLayout.addStretch(); textLayout.addWidget(&name); textLayout.addWidget(&statusMessage); diff --git a/widget/friendwidget.h b/widget/friendwidget.h index 756578dce..3fa37649a 100644 --- a/widget/friendwidget.h +++ b/widget/friendwidget.h @@ -44,8 +44,8 @@ signals: public: int friendId; - QLabel avatar, name, statusPic; - CroppingLabel statusMessage; + QLabel avatar, statusPic; + CroppingLabel name, statusMessage; QHBoxLayout layout; QVBoxLayout textLayout;