diff --git a/Changes.md b/Changes.md index 1d68a8d36d9..a623ad83650 100644 --- a/Changes.md +++ b/Changes.md @@ -1,6 +1,11 @@ 1.3.x.x (relative to 1.3.14.0) ======= +Fixes +----- + +- Fixed a bug on transform tool orientation plugs where the green icon indicating a plug is not set to its default overlapped with the label. + 1.3.14.0 (relative to 1.3.13.1) diff --git a/python/GafferUI/_StyleSheet.py b/python/GafferUI/_StyleSheet.py index 23bf1e5ea63..561ca2158a6 100644 --- a/python/GafferUI/_StyleSheet.py +++ b/python/GafferUI/_StyleSheet.py @@ -241,19 +241,16 @@ def styleColor( key ) : QLabel#gafferPlugLabel { /* - QLabel's text layout seems to lurch from one approach - to another in the presence of non-zero padding. So we - need some padding here so that we get a layout that - matches the `gafferValueChanged="true"` styling below. + Ensure that there is enough space reserved for the `valueChanged` + icon whether it is visible or not. */ - padding-left: 1px; + padding-left: 16px; } QLabel#gafferPlugLabel[gafferValueChanged="true"] { background-image: url(:/valueChanged.png); background-repeat: no-repeat; background-position: left; - padding-left: 16px; } QLabel#gafferDefaultRowLabel {