Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Copyright: None
License: CC0-1.0

# Project file
Files: *.pro *.prf *.pri *.qrc *CMakeLists.txt .tx/*
Files: *.pro *.prf *.pri *.qrc *CMakeLists.txt .tx/* config.h.in
Copyright: None
License: CC0-1.0

Expand Down Expand Up @@ -62,3 +62,4 @@ License: GPL-3.0-or-later
Files: tests/*
Copyright: UnionTech Software Technology Co., Ltd.
License: GPL-3.0-or-later

4 changes: 1 addition & 3 deletions src/music-player/mainFrame/mainframe.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2020 ~ 2021 Uniontech Software Technology Co., Ltd.
// Copyright (C) 2020 ~ 2026 Uniontech Software Technology Co., Ltd.
// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later
Expand Down Expand Up @@ -90,8 +90,6 @@ MainFrame::MainFrame()
m_titlebar = new DTitlebar(this);
m_titlebar->setTitle(tr("Music"));
m_titlebar->setIcon(QIcon::fromTheme("deepin-music")); //titlebar->setCustomWidget(titlebarwidget, Qt::AlignLeft, false);
// 禁止分割屏幕,因为应用的最小尺寸会被分割屏幕功能破坏 setMinimumSize(QSize(1070, 680))
m_titlebar->setSplitScreenEnabled(false);

m_titlebar->setCustomWidget(m_titlebarwidget);
m_titlebar->layout()->setAlignment(m_titlebarwidget, Qt::AlignCenter);
Expand Down
Loading