MonoScript PropertyField isn't clickable

I have implemented a default drawer for MonoBehaviours and ScriptableObjects that use UI Toolkit so that I can use UI Toolkit PropertyDrawers instead of relying on making many custom editors.

One thing I have notices is that the default element used for MonoScript properties isn’t clickable. The IMGUI implementation allows for clicking of the disabled script name to select the script in the project, and double clicking it will launch the editor (VS in my case).

6079785--659742--upload_2020-7-11_14-31-13.png

Is this a knows issue or limitation? My plan right now is to wrap up a IMGUI property so I can get that functionality back quickly and move on with development.

Yes, this is known. IMGUI cheats and gives the Object Field special treatment when disabled. UI Toolkit has no such special treatment right now. Since the field is disabled, no events are sent to it at all.