diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-10-30 22:41:50 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-10-30 22:41:50 -0500 |
commit | 69429dcfc35d449c78b346bdce536f17d926c755 (patch) | |
tree | 6c1d1015837f0e77a8e950e38a3a24ee616e598c /src/styles/qcommonstyle.cpp | |
parent | 22d1ab9eccc005b0497cff131593e6b9ff96e7c2 (diff) | |
download | qt3-69429dcfc35d449c78b346bdce536f17d926c755.tar.gz qt3-69429dcfc35d449c78b346bdce536f17d926c755.zip |
Add new style primatives for enhanced third party style compatibility
Diffstat (limited to 'src/styles/qcommonstyle.cpp')
-rw-r--r-- | src/styles/qcommonstyle.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/styles/qcommonstyle.cpp b/src/styles/qcommonstyle.cpp index 2614bbf..3a1a8d8 100644 --- a/src/styles/qcommonstyle.cpp +++ b/src/styles/qcommonstyle.cpp @@ -2870,6 +2870,9 @@ int QCommonStyle::pixelMetric(PixelMetric m, QStyleControlElementData ceData, Co case PM_TabBarScrollButtonWidth: ret = 16; break; + case PM_ArrowSize: + ret = 7; + break; default: ret = 0; break; |