summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2018-01-18 10:05:21 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2018-01-18 10:05:21 +0000
commit0688a755e6f0aa89dbe09778fd3e1fa84399d630 (patch)
tree5661601a10586684607201928b976e376ad0958f
parent2b47afadc0fcc9a2617d5c9e8be0ee035762e0b9 (diff)
parentbd46858d697b454ec954d23d70ffd0a62a9c735e (diff)
Merge "Merge remote-tracking branch 'origin/5.9.4' into 5.9" into refs/staging/5.9
-rw-r--r--dist/changes-5.9.46
-rw-r--r--src/widgets/styles/qmacstyle_mac.mm8
2 files changed, 9 insertions, 5 deletions
diff --git a/dist/changes-5.9.4 b/dist/changes-5.9.4
index 0bb768424f..f0cc6007c2 100644
--- a/dist/changes-5.9.4
+++ b/dist/changes-5.9.4
@@ -65,6 +65,12 @@ QtCore
QtNetwork
---------
+ - Bearer Management:
+ * [QTBUG-40332] The nativewifi (Windows) bearer plugin was determined
+ to be causing network interference in the form of system-wide higher
+ latency and has been disabled. The CoreWlan (macOS) plugin has also
+ been disabled.
+
- QUdpSocket:
* [QTBUG-64718] Fixed a regression from Qt 5.9.3 caused by an apparent
Win32 API quirk we triggered when using readDatagram(), resulting in
diff --git a/src/widgets/styles/qmacstyle_mac.mm b/src/widgets/styles/qmacstyle_mac.mm
index f45bf7011f..e6436f82a6 100644
--- a/src/widgets/styles/qmacstyle_mac.mm
+++ b/src/widgets/styles/qmacstyle_mac.mm
@@ -3389,13 +3389,12 @@ void QMacStyle::drawPrimitive(PrimitiveElement pe, const QStyleOption *opt, QPai
}
break;
case PE_IndicatorMenuCheckMark: {
- if (!(opt->state & State_On))
- break;
QColor pc;
- if (opt->state & State_Selected)
+ if (opt->state & State_On)
pc = opt->palette.highlightedText().color();
else
pc = opt->palette.text().color();
+
QCFType<CGColorRef> checkmarkColor = CGColorCreateGenericRGB(static_cast<CGFloat>(pc.redF()),
static_cast<CGFloat>(pc.greenF()),
static_cast<CGFloat>(pc.blueF()),
@@ -4493,8 +4492,7 @@ void QMacStyle::drawControl(ControlElement ce, const QStyleOption *opt, QPainter
const int xp = contentRect.x() + macItemFrame;
checkmarkOpt.rect = QRect(xp, contentRect.y() - checkmarkOpt.fontMetrics.descent(), mw, mh);
- checkmarkOpt.state |= State_On; // Always on. Never rendered when off.
- checkmarkOpt.state.setFlag(State_Selected, active);
+ checkmarkOpt.state.setFlag(State_On, active);
checkmarkOpt.state.setFlag(State_Enabled, enabled);
if (widgetSize == QAquaSizeMini)
checkmarkOpt.state |= State_Mini;