You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably this if block being disabled is the issue. I was able to get it working again by enabling it but im not sure if there is any other changes made. In master its on line 400 in MouseFix.cpp
{
#if 0
if (ImGui::Checkbox("Enable cursor fix", &enable_cursor_fix)) {
CursorFixEnable(enable_cursor_fix);
}
#endif
ImGui::SliderInt("Guild Wars cursor size", &cursor_size, 16, 64);
ImGui::ShowHelp("Sizes other than 32 might lead the the cursor disappearing at random.\n"
"Right click to make the cursor dis- and reappear for this to take effect.");
if (ImGui::IsItemDeactivatedAfterEdit()) {
SetCursorSize(cursor_size);
RedrawCursorIcon();
}
if (ImGui::Button("Reset")) {
SetCursorSize(32);
RedrawCursorIcon();
}
}```
The text was updated successfully, but these errors were encountered:
The cursor bug fix has been removed.
Probably this if block being disabled is the issue. I was able to get it working again by enabling it but im not sure if there is any other changes made. In master its on line 400 in MouseFix.cpp
GWToolboxpp/GWToolboxdll/Modules/MouseFix.cpp
Line 400 in 418675b
The text was updated successfully, but these errors were encountered: