summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2020-11-18 18:34:37 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2020-12-01 00:48:51 +0000
commit28b015342d000b8487c853153f1d93606d3c2add (patch)
tree7ec6a4eb65650bd06645bb712601b8297a6eb0aa /src
parentfb61cd8df838eb7aa91adf9cc87d2ad2409e9c88 (diff)
QMacStyle - remove vertical adjustment for inactive tab
While it worked as expected with beta, with final release this thing looks wrong again, especially in the dark mode. Change-Id: I6857344de897e0f39d9d8e66431635dbe2f4d077 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io> (cherry picked from commit abee4cdd5925a8513f51784754fca8fa35031732) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/styles/mac/qmacstyle_mac.mm2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/plugins/styles/mac/qmacstyle_mac.mm b/src/plugins/styles/mac/qmacstyle_mac.mm
index cdc7554c67..40c0018c36 100644
--- a/src/plugins/styles/mac/qmacstyle_mac.mm
+++ b/src/plugins/styles/mac/qmacstyle_mac.mm
@@ -4035,8 +4035,6 @@ void QMacStyle::drawControl(ControlElement ce, const QStyleOption *opt, QPainter
rAdjusted.origin.x -= 3;
rAdjusted.size.width += 6;
if (isBigSurOrAbove) {
- rAdjusted.origin.y -= 1;
- rAdjusted.size.height += 1;
if (tp == QStyleOptionTab::End)
rAdjusted.origin.x -= 2;
}