We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
auto dwmBlurAction = new QAction(tr("Enable DWM blur"), menuBar); dwmBlurAction->setCheckable(true); connect(dwmBlurAction, &QAction::toggled, this, [this](bool checked) { QDialog dlg(this); auto agent = new QWK::WidgetWindowAgent(&dlg); agent->setup(&dlg); dlg.exec(); return; if (!windowAgent->setWindowAttribute(QStringLiteral("dwm-blur"), checked)) { return; } setProperty("custom-style", checked); style()->polish(this); });
Qt:5.15.9 操作系统:Windows 7 PS:Windows 10 & Windows 11 正常,Frameless-Helper正常
The text was updated successfully, but these errors were encountered:
目前我改以下代码可以临时解决崩溃的问题: void Win32WindowContext::winIdChanged(WId winId, WId oldWinId) { 。。。 if (!isSystemBorderEnabled() && isWin8OrGreater()) { m_delegate->setWindowFlags(m_host, m_delegate->getWindowFlags(m_host) | Qt::FramelessWindowHint); } 。。。 }
Sorry, something went wrong.
需要研究一下。
No branches or pull requests
Qt:5.15.9
操作系统:Windows 7
PS:Windows 10 & Windows 11 正常,Frameless-Helper正常
The text was updated successfully, but these errors were encountered: