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:
Dekel Tsur 2001-01-17 16:23:43 +00:00
parent 4b2b0c62b1
commit 06ff3ba25a
2 changed files with 3 additions and 1 deletions

View File

@ -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.

View File

@ -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]