Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove invalid url #388

Merged
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
2 changes: 1 addition & 1 deletion src/main/terminalapplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void TerminalApplication::handleQuitAction()

bool TerminalApplication::notify(QObject *object, QEvent *event)
{
//修复bug#110813,参考https://gerrit.uniontech.com/c/dtkwidget/+/94656
//修复bug#110813
if (event->type() == QEvent::ApplicationFontChange) {
// ApplicationFontChange 调用 font() 是 ok 的,如果在 fontChanged 中调用在某些版本中会出现 deadlock
DFontSizeManager::instance()->setFontGenericPixelSize(static_cast<quint16>(DFontSizeManager::fontPixelSize(font())));
Expand Down
Loading