Skip to content

Commit

Permalink
Title:fix the add button should be centered horizontally with the title
Browse files Browse the repository at this point in the history
of "my playlist"

Description:【音乐】【6.0.0.7】【UI】添加按钮要跟“我的歌单”标题水平居中

RootCause:Null

Solution:
  • Loading branch information
dudecheng committed Apr 3, 2020
1 parent 6d75ca1 commit db121d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/music-player/view/musiclistscrollarea.cpp
Expand Up @@ -87,7 +87,7 @@ MusicListScrollArea::MusicListScrollArea(QWidget *parent) : DScrollArea(parent)
customizeLayout->setContentsMargins(0, 0, 5, 0);
customizeLayout->addWidget(customizeLabel, 100, Qt::AlignLeft);
customizeLayout->addStretch();
customizeLayout->addWidget(m_addListBtn, 0, Qt::AlignRight);
customizeLayout->addWidget(m_addListBtn, 0, Qt::AlignBottom);

m_dataBaseListview = new MusicListView;
m_dataBaseListview->setEditTriggers(QAbstractItemView::NoEditTriggers);
Expand Down

0 comments on commit db121d4

Please sign in to comment.