chore: update changelog to 1:6.1.30#270
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates the Debian changelog metadata to reflect the new package version 1:6.1.30 on the master branch. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
TAG Bot TAG: 6.1.30 |
update changelog to 1:6.1.30 Log: update changelog to 1:6.1.30
7bf7a96 to
2f67fd1
Compare
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: caixr23, mhduiy The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
deepin pr auto review★ 总体评分:65分■ 【总体评价】
■ 【详细分析】
■ 【改进建议代码示例】 --- a/dde-clipboard/mainwindow.cpp
+++ b/dde-clipboard/mainwindow.cpp
@@ -22,6 +22,8 @@
#include <DGuiApplicationHelper>
#include <DApplicationHelper>
+#include <QSignalMapper>
+
MainWindow::MainWindow(QWidget *parent)
: DBlurEffectWidget(parent)
@@ -204,7 +206,14 @@ void MainWindow::initUI()
m_clearButton->setFixedSize(60, 36);
m_clearButton->setText(tr("Clear"));
m_clearButton->setBackOpacity(200);
- m_clearButton->setRadius(8);
+
+ auto updateClearButtonRadius = [this]() {
+ int radius = DGuiApplicationHelper::instance()->windowRadius();
+ m_clearButton->setRadius(radius);
+ };
+ updateClearButtonRadius();
+
+ connect(DApplicationHelper::instance(), &DApplicationHelper::themeTypeChanged, this, updateClearButtonRadius);
m_clearButton->setVisible(false);
m_searchEdit->setFixedWidth(240); |
|
TAG Bot ✅ Tag created successfully 📋 Tag Details
|
更新说明
自动更新 changelog 到版本 1:6.1.30
变更内容
版本信息
Summary by Sourcery
Chores: