mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-13 01:38:20 +00:00
[client] config: ensure mouseRedraw is on if jitRender is in use
This commit is contained in:
parent
f7682c289a
commit
04c9694ffa
@ -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…
Reference in New Issue
Block a user