Label list is non-scrollable

If you use a bunch of Labels for different items, you will notice that the list of Labels is a non-scrollable list, which means that you can’t reach the bottom section to even Add a new Label anymore.

To fix this, in Packages/Addressables/Editor/GUI/LabelWindow.cs,

add this at the top of the class, right after the declaration for m_Settings:

        Vector2 scrollPosition;

Then, change the OnGUI function to look like this:

        void OnGUI()
        {
            GUILayout.Space(7);
            scrollPosition = GUILayout.BeginScrollView(scrollPosition, GUIStyle.none);
            GUILayout.BeginVertical(EditorStyles.label);
            m_LabelNamesRl.DoLayoutList();
            GUILayout.EndVertical();
            GUILayout.EndScrollView();
        }
1 Like

bug still persists in 1.6.0 …

adding a workaround is easy but i hope this gets fixed soon

1 Like

Is there a public GIT for this, where we can submit pull requests?