mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
fix: 任务栏飞行模式窗口字体太小
与任务栏无线网络中字体保持一致,pixel size 17 Log: 调整字体 Influence: 任务栏飞行模式字体大小 Task: https://pms.uniontech.com/bug-view-148967.html Change-Id: I583fddfa463faf8b8d85f41fc808a37a2e132408
This commit is contained in:
parent
f9110a3e07
commit
08a7b7be2b
@ -38,6 +38,9 @@ AirplaneModeApplet::AirplaneModeApplet(QWidget *parent)
|
||||
setFixedHeight(40);
|
||||
QLabel *title = new QLabel(this);
|
||||
title->setText(tr("Airplane Mode"));
|
||||
QFont font;
|
||||
font.setPixelSize(17);
|
||||
title->setFont(font);
|
||||
QHBoxLayout *appletlayout = new QHBoxLayout(this);
|
||||
appletlayout->setMargin(0);
|
||||
appletlayout->setSpacing(0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user