Skip to content

Commit 017d6fa

Browse files
authored
Merge pull request #3556 from keveleigh/extra-space
Remove extra space from BaseMixedRealityProfileInspector
2 parents 8974a4c + e3c0afc commit 017d6fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/MixedRealityToolkit/Inspectors/Profiles/BaseMixedRealityProfileInspector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ private static bool RenderProfileInternal(SerializedProperty property, GUIConten
133133
{
134134
string showFoldoutKey = GetSubProfileDropdownKey(property);
135135
bool showFoldout = SessionState.GetBool(showFoldoutKey, false);
136-
showFoldout = EditorGUILayout.Foldout(showFoldout, showFoldout ? "Hide " + property.displayName + " contents" : "Show " + property.displayName + " contents");
136+
showFoldout = EditorGUILayout.Foldout(showFoldout, showFoldout ? "Hide " + property.displayName + " contents" : "Show " + property.displayName + " contents");
137137

138138
if (showFoldout)
139139
{

0 commit comments

Comments
 (0)