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 e387f8c commit 3308778Copy full SHA for 3308778
MLAPI-Editor/MLAPIEditor.cs
@@ -305,7 +305,9 @@ private void OnGUI()
305
{
306
if (releases[i] == null)
307
continue;
308
- foldoutStatus[i] = EditorGUILayout.Foldout(foldoutStatus[i], releases[i].tag_name + " - " + releases[i].name);
+
309
+ foldoutStatus[i] = EditorGUILayout.Foldout(foldoutStatus[i], releases[i].tag_name + ((releases[i].tag_name == currentVersion) ? " - [Installed]" : ""));
310
311
if (foldoutStatus[i])
312
313
EditorGUI.indentLevel++;
0 commit comments