mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Decrease keyboard purge thershold.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1342 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4b2b0c62b1
commit
06ff3ba25a
@ -1,5 +1,7 @@
|
||||
2001-01-17 Dekel Tsur <dekelts@tau.ac.il>
|
||||
|
||||
* WorkArea.C (work_area_handler): Decrease keyboard purge thershold.
|
||||
|
||||
* lyxrc.C (setDefaults): Correct initialization value for
|
||||
font_norm_type.
|
||||
|
||||
|
@ -421,7 +421,7 @@ int WorkArea::work_area_handler(FL_OBJECT * ob, int event,
|
||||
lyxerr[Debug::KEY] << "Workarea Diff: "
|
||||
<< xke->time - last_time_pressed
|
||||
<< endl;
|
||||
if (xke->time - last_time_pressed < 35 // should perhaps be tunable
|
||||
if (xke->time - last_time_pressed < 25 // should perhaps be tunable
|
||||
&& ret_state == last_state_pressed
|
||||
&& xke->keycode == last_key_pressed) {
|
||||
lyxerr[Debug::KEY]
|
||||
|
Loading…
Reference in New Issue
Block a user