Skip to content

Commit

Permalink
fix(asset-store): change LinkButton -> Button
Browse files Browse the repository at this point in the history
`LinkButton` API is not available in Unity 2020.3
  • Loading branch information
jasonboukheir committed Feb 20, 2023
1 parent 40e09e1 commit 9d7fac2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public override void OnInspectorGUI()
using (new EditorGUILayout.HorizontalScope())
{
GUILayout.FlexibleSpace();
if (EditorGUILayout.LinkButton("View Documentation"))
if (GUILayout.Button("View Documentation"))
{
string url;
if (File.Exists(path))
Expand Down

0 comments on commit 9d7fac2

Please sign in to comment.