Index: trunk/globalconst.h =================================================================== --- trunk/globalconst.h (revision 2068) +++ trunk/globalconst.h (revision 2069) @@ -45,7 +45,6 @@ * some default values */ #define DEFAULT_CELLSIZE 50 /* default cell size for symbols */ -#define CLICK_TIME 200 /* default time for click expiration */ /* --------------------------------------------------------------------------- * frame between the groundplane and the copper Index: trunk/src/action_helper.c =================================================================== --- trunk/src/action_helper.c (revision 2068) +++ trunk/src/action_helper.c (revision 2069) @@ -495,7 +495,7 @@ Note.Click = true; /* do something after click time */ - gui->add_timer(click_cb, CLICK_TIME, hv); + gui->add_timer(click_cb, conf_core.editor.click_time, hv); /* see if we clicked on something already selected * (Note.Moving) or clicked on a MOVE_TYPE Index: trunk/src/conf_core.h =================================================================== --- trunk/src/conf_core.h (revision 2068) +++ trunk/src/conf_core.h (revision 2069) @@ -54,6 +54,8 @@ CFT_BOOLEAN description; /* display element description as element name, instead of value */ CFT_BOOLEAN name_on_pcb; /* display Reference Designator as element name, instead of value */ + CFT_INTEGER click_time; /* default time for click expiration, in ms */ + struct view { CFT_BOOLEAN flip_x; /* view: flip the board along the X (horizontal) axis */ CFT_BOOLEAN flip_y; /* view: flip the board along the Y (vertical) axis */ Index: trunk/src/pcb-conf.lht =================================================================== --- trunk/src/pcb-conf.lht (revision 2068) +++ trunk/src/pcb-conf.lht (revision 2069) @@ -69,6 +69,7 @@ enable_stroke = 0 live_routing = 0 beep_when_finished = 0 + click_time = 200 ha:view { flip_x = 0 flip_y = 0