Use alignment instead of stretch

remotes/origin/HEAD nightly
Konstantinos Sideris 6 years ago
parent aa486a5c0c
commit f272d9221e
  1. 7
      CHANGELOG.md
  2. 2
      src/CommunitiesList.cpp
  3. 2
      src/RoomList.cpp
  4. 2
      src/Utils.h

@ -12,9 +12,10 @@
- Don't enable tray by default.
- Hard-coded pixel values were removed. The sizes are derived from the font.
### Removed
- Remove room re-ordering option.
- Built-in emoji picker & emoji font.
### Other changes
- Removed room re-ordering option.
- Removed built-in emoji picker.
- Removed bundled fonts.
## [0.6.1] - 2018-09-26

@ -1,5 +1,5 @@
#include "Cache.h"
#include "CommunitiesList.h"
#include "Cache.h"
#include "Logging.h"
#include "MatrixClient.h"
#include "Utils.h"

@ -53,9 +53,9 @@ RoomList::RoomList(QWidget *parent)
scrollAreaContents_->setObjectName("roomlist_area");
contentsLayout_ = new QVBoxLayout(scrollAreaContents_);
contentsLayout_->setAlignment(Qt::AlignTop);
contentsLayout_->setSpacing(0);
contentsLayout_->setMargin(0);
contentsLayout_->addStretch(1);
scrollArea_->setWidget(scrollAreaContents_);
topLayout_->addWidget(scrollArea_);

@ -239,7 +239,7 @@ struct SideBarSizes
int small;
int normal;
int groups;
int collapsePoint;
int collapsePoint;
};
SideBarSizes

Loading…
Cancel
Save