lower navigation biasing along x axis to avoid unexpected navigation movements in game menu

This commit is contained in:
Anthony Pesch 2017-12-03 23:24:40 -05:00
parent 3fed26256f
commit 4009efb586
1 changed files with 3 additions and 0 deletions

View File

@ -491,6 +491,9 @@ struct imgui *imgui_create() {
io.SetClipboardTextFn = nullptr;
io.GetClipboardTextFn = nullptr;
/* lessen navigation biasing */
io.NavScoreScaleX = 0.5f;
g_imgui = imgui;
return imgui;