mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
Increased key repeat rate for non-character input key repeat.
Dodgy - we should have a match here for character input and non-character input (e.g. holding 'a' vs holding 'backspace' should be same rate), but for the earlier we don't have the info?
This commit is contained in:
parent
7dc5228235
commit
3df91b52ea
@ -670,7 +670,7 @@ ImGuiIO::ImGuiIO()
|
|||||||
MouseDoubleClickMaxDist = 6.0f;
|
MouseDoubleClickMaxDist = 6.0f;
|
||||||
MouseDragThreshold = 6.0f;
|
MouseDragThreshold = 6.0f;
|
||||||
KeyRepeatDelay = 0.250f;
|
KeyRepeatDelay = 0.250f;
|
||||||
KeyRepeatRate = 0.020f;
|
KeyRepeatRate = 0.050f;
|
||||||
UserData = NULL;
|
UserData = NULL;
|
||||||
|
|
||||||
// User functions
|
// User functions
|
||||||
|
Loading…
Reference in New Issue
Block a user