summaryrefslogtreecommitdiffstats
path: root/src/widgets/styles/qstyle.h
diff options
context:
space:
mode:
authorWang Peng <wangpeng@uniontech.com>2021-08-04 14:06:12 +0800
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2021-08-17 03:29:12 +0000
commit6dc9c8991923e9cd0bacf00a05742f0eea574ea5 (patch)
tree51b5cc27ed032dfc507fe2a36ede3297f8b58307 /src/widgets/styles/qstyle.h
parentb781fa79c1146c94f840e2779d9d35bb14eb722e (diff)
QStyle: allow styles to control the margin around icons in QLineEdit
The styles can't control the margin of the icon container, and its value is hardcoded to a quarter of the iconSize, which is very unfriendly. Add a PixelMetric enum value to allow styles to control the margin. Change-Id: I21274b68d24150db7be78513fe9125f775aa2b00 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'src/widgets/styles/qstyle.h')
-rw-r--r--src/widgets/styles/qstyle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/styles/qstyle.h b/src/widgets/styles/qstyle.h
index fc94ed2bf5..6d094cc4f2 100644
--- a/src/widgets/styles/qstyle.h
+++ b/src/widgets/styles/qstyle.h
@@ -568,7 +568,7 @@ public:
PM_TitleBarButtonSize,
PM_LineEditIconSize,
-
+ PM_LineEditIconMargin,
// do not add any values below/greater than this
PM_CustomBase = 0xf0000000
};