Skip to content

Commit 215f26e

Browse files
committed
Make room for package version characters
Otherwise, the package installed status is on top of the package version which is undesirable.
1 parent 20e4150 commit 215f26e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Packages/com.unity.inputsystem/InputSystem/Editor/DownloadableSample.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ public override void OnInspectorGUI()
7272
Rect rect = EditorGUILayout.GetControlRect(true, 20);
7373

7474
GUI.Label(rect, new GUIContent(req), EditorStyles.label);
75-
rect.width -= 160;
76-
rect.x += 160;
75+
rect.width -= 200;
76+
rect.x += 200;
7777
if (add != null || !list.IsCompleted)
7878
{
7979
using (new EditorGUI.DisabledScope(true))

0 commit comments

Comments
 (0)