]> git.mdlowis.com Git - projs/tide.git/commitdiff
Updated double click time to 250ms
authorMichael D. Lowis <mike@mdlowis.com>
Fri, 16 Jun 2017 00:53:50 +0000 (20:53 -0400)
committerMichael D. Lowis <mike@mdlowis.com>
Fri, 16 Jun 2017 00:53:50 +0000 (20:53 -0400)
TODO.md
config.h

diff --git a/TODO.md b/TODO.md
index c358c3a918e6a40ec43e87f9d5e720f92d2cccf0..204268b643f23f781ef5e00e81096fd823e78822 100644 (file)
--- a/TODO.md
+++ b/TODO.md
@@ -4,7 +4,6 @@ Up Next:
 
 * add a cap to the distance from last span to first char on screen
 * Ctrl+/ shortcut to comment/uncomment based on syntax
-* Update click time to 500ms
 * ignore the menu key or map it to control
 * clicking or dragging the mouse out of bounds should still update the selection
 * implement transaction control in buf.c
index aa3450b3623f9caee50b9ad64f316102e0e38cf9..e801e375a2889e13f8f3d6faf4fdd1a5cffc66bc 100644 (file)
--- a/config.h
+++ b/config.h
@@ -31,7 +31,7 @@ enum {
     DefaultCharset  = UTF_8,   /* We assume UTF-8 because nothing else matters */
     FontCacheSize   = 16,      /* Maximum number of fonts allowed in the font cache */
     LineSpacing     = LNSPACE, /* Set the vertical spacing between lines */
-    DblClickTime    = 250,     /* Millisecond time for detecting double clicks */
+    DblClickTime    = 500,     /* Millisecond time for detecting double clicks */
     RulePosition    = 80,      /* Column in which the vertical ruler appears */
     CopyIndent      = 1,       /* New lines will inherit the indent of the preceding line */
     LineNumbers     = 1,       /* Enable line numbers by default or not */