Skip to content

Commit

Permalink
Re-add editor language select dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
JLChnToZ committed Sep 30, 2024
1 parent 4622fa5 commit b2cfe7a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Packages/idv.jlchntoz.vvmw/Editor/VVMW/EditorBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
using UnityEditor;
using JLChnToZ.VRC.Foundation.I18N;
using JLChnToZ.VRC.Foundation.Editors;
using JLChnToZ.VRC.Foundation.I18N.Editors;

namespace JLChnToZ.VRC.VVMW.Editors {
using Utils = JLChnToZ.VRC.Foundation.Editors.Utils;
using Utils = Foundation.Editors.Utils;
public abstract class VVMWEditorBase : Editor {
const string bannerTextureGUID = "e8354bc2ac14e86498c0983daf484661";
const string iconGUID = "a24ecd1d23cca9e46871bc17dfe3bd46";
Expand Down Expand Up @@ -77,7 +78,7 @@ public override void OnInspectorGUI() {
GUI.Label(new Rect(bannerRect.xMax - versionSize.x, bannerRect.yMin, versionSize.x, versionSize.y), tempContent, versionLabelStyle);
}
EditorGUILayout.Space();
// EditorI18NEditor.DrawLocaleField();
I18NUtils.DrawLocaleField();
selfUpdater.DrawUpdateNotifier();
EditorGUILayout.Space();
}
Expand Down

0 comments on commit b2cfe7a

Please sign in to comment.