Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit 693f581

Browse files
committed
Remove duplicate UIManager.Update call
1 parent 1d1dad5 commit 693f581

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

UnityEditorPackage/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ The inspector is used to see detailed information on objects of any type and man
6262
### Settings
6363

6464
* You can change the settings via the "Options" tab of the menu, or directly from the config file.
65-
* BepInEx: `BepInEx\config\com.sinai.unityexplorer.cfg`
66-
* MelonLoader: `UserData\MelonPreferences.cfg`
67-
* Standalone `{DLL_location}\UnityExplorer\config.cfg`
65+
* <AssetsFolder>/sinai-dev-UnityExplorer~/config.cfg
6866

6967
# Acknowledgments
7068

0 Bytes
Binary file not shown.

src/ExplorerCore.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace UnityExplorer
1515
public static class ExplorerCore
1616
{
1717
public const string NAME = "UnityExplorer";
18-
public const string VERSION = "4.7.0";
18+
public const string VERSION = "4.7.1";
1919
public const string AUTHOR = "Sinai";
2020
public const string GUID = "com.sinai.unityexplorer";
2121

@@ -74,8 +74,6 @@ internal static void Update()
7474
// check master toggle
7575
if (InputManager.GetKeyDown(ConfigManager.Master_Toggle.Value))
7676
UIManager.ShowMenu = !UIManager.ShowMenu;
77-
78-
UIManager.Update();
7977
}
8078

8179
// Can be removed eventually. For migration from <4.7.0

0 commit comments

Comments
 (0)