Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cursor fix has been removed/disabled #1278

Open
haxgw opened this issue Nov 21, 2024 · 0 comments
Open

Cursor fix has been removed/disabled #1278

haxgw opened this issue Nov 21, 2024 · 0 comments

Comments

@haxgw
Copy link

haxgw commented Nov 21, 2024

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

void MouseFix::DrawSettingsInternal()

{
#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();
    }
}```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants