mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-08-01 20:13:39 +00:00
[client] config: ensure mouseRedraw is on if jitRender is in use
This commit is contained in:
parent
f7682c289a
commit
04c9694ffa
1 changed files with 6 additions and 0 deletions
|
@ -601,6 +601,12 @@ bool config_load(int argc, char * argv[])
|
|||
g_params.autoCapture = option_get_bool("input", "autoCapture" );
|
||||
g_params.captureInputOnly = option_get_bool("input", "captureOnly" );
|
||||
|
||||
if (g_params.jitRender && !g_params.mouseRedraw)
|
||||
{
|
||||
DEBUG_WARN("win:jitRender is enabled, forcing input:mouseRedraw");
|
||||
g_params.mouseRedraw = true;
|
||||
}
|
||||
|
||||
g_params.helpMenuDelayUs = option_get_int("input", "helpMenuDelay") * (uint64_t) 1000;
|
||||
|
||||
g_params.minimizeOnFocusLoss = option_get_bool("win", "minimizeOnFocusLoss");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue