We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1841cdd commit 4666096Copy full SHA for 4666096
Assets/MRTK/Core/Inspectors/ControllerPopupWindow.cs
@@ -316,13 +316,10 @@ private void RenderMappingList(List<string> controllerList)
316
return;
317
}
318
319
- GUIStyle headerStyle = new GUIStyle();
320
- headerStyle.richText = true;
321
-
322
using (new EditorGUILayout.VerticalScope())
323
{
324
GUILayout.FlexibleSpace();
325
- EditorGUILayout.LabelField("<b>Controllers affected by this mapping</b>", headerStyle);
+ EditorGUILayout.LabelField("Controllers affected by this mapping", EditorStyles.boldLabel);
326
for (int i = 0; i < controllerList.Count; i++)
327
328
EditorGUILayout.LabelField(controllerList[i]);
0 commit comments