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

Fixed cursor being locked after closing QM #24

Merged
merged 1 commit into from
Jun 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/3rdparty/
/.build/
/obj
.idea/
1 change: 1 addition & 0 deletions ReMod.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<VRCPath Condition="Exists('$(HOME)/.steam/steam/steamapps/common/VRChat')">$(HOME)/.steam/steam/steamapps/common/VRChat</VRCPath>
<VRCPath Condition="Exists('S:\Games\steamapps\common\VRChat')">S:\Games\steamapps\common\VRChat</VRCPath>
<VRCPath Condition="Exists('G:\SteamLibrary\steamapps\common\VRChat')">G:\SteamLibrary\steamapps\common\VRChat</VRCPath>
<VRCPath Condition="Exists('P:\SteamLibrary\steamapps\common\VRChat')">P:\SteamLibrary\steamapps\common\VRChat</VRCPath>
</PropertyGroup>

<PropertyGroup Condition="'$(MlPath)'==''">
Expand Down
2 changes: 2 additions & 0 deletions VRChat/QuickMenuExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ public static void CloseQuickMenu(this UIManagerImpl uiManager)
.First(method => method.Name.StartsWith("Method_Public_Virtual_Final_New_Void_") && XrefScanner.XrefScan(method).Count() == 2);
_closeQuickMenuMethod = typeof(UIManagerImpl).GetMethods()
.First(method => method.Name.StartsWith("Method_Public_Void_Boolean_") && XrefUtils.CheckUsedBy(method, closeMenuMethod.Name));
VRCUiCursorManager.field_Private_Static_VRCUiCursorManager_0.field_Private_Boolean_6 = false;
VRCUiCursorManager.field_Private_Static_VRCUiCursorManager_0.field_Private_Boolean_0 = true;
}

_closeQuickMenuMethod.Invoke(uiManager, new object[1] { false });
Expand Down