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

Improve seamless mouse configuration entry description, mention the touchscreen #2163

Merged
merged 1 commit into from Dec 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/hardware/mouse/mouse_config.cpp
Expand Up @@ -266,8 +266,10 @@ static void config_init(Section_prop &secprop)
" onclick: Capture the mouse when clicking any button in the window.\n"
" onstart: Capture the mouse immediately on start.\n"
" seamless: Let the mouse move seamlessly; captures only with middle-click or\n"
" hotkey.\n"
" nomouse: Hide the mouse and don't send input to the game.");
" hotkey. Seamless mouse does not work correctly with all the games,\n"
" Windows 3.1x can be made compatible with a custom mouse driver.\n"
" nomouse: Hide the mouse and don't send input to the game.\n"
"For touchscreen control use the seamless method.\n");

prop_bool = secprop.Add_bool("mouse_middle_release", always, true);
prop_bool->Set_help("If true, middle-click will release the captured mouse, and also\n"
Expand Down