Fix roomlist borders

This commit is contained in:
Konstantinos Sideris 2017-11-09 11:39:21 +02:00
parent 9c331905e6
commit b586a2329c
1 changed files with 3 additions and 0 deletions

View File

@ -33,6 +33,9 @@ RoomList::RoomList(QSharedPointer<MatrixClient> client, QWidget *parent)
: QWidget(parent) : QWidget(parent)
, client_(client) , client_(client)
{ {
setStyleSheet(
"border: 1px solid #ccc; border-right: 0px solid #000; border-left: 0px solid #000;");
topLayout_ = new QVBoxLayout(this); topLayout_ = new QVBoxLayout(this);
topLayout_->setSpacing(0); topLayout_->setSpacing(0);
topLayout_->setMargin(0); topLayout_->setMargin(0);