[gimp/gimp-2-8] Bug 663582 - Brush outline is too slow



commit 8d6634c8eb485764f0d88be80e164adbed473096
Author: Michael Natterer <mitch gimp org>
Date:   Sat Oct 6 00:03:47 2012 +0200

    Bug 663582 - Brush outline is too slow
    
    Don't confuse microseconds with milliseconds: the 20 fps interval
    is 50000, not 50, sigh.
    (cherry picked from commit db5c952c4e01f3055e6f77a0315be42f52382501)

 app/tools/gimpdrawtool.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/app/tools/gimpdrawtool.c b/app/tools/gimpdrawtool.c
index 087c34f..13d997a 100644
--- a/app/tools/gimpdrawtool.c
+++ b/app/tools/gimpdrawtool.c
@@ -59,9 +59,9 @@
 #include "gimpdrawtool.h"
 
 
-#define DRAW_TIMEOUT           4
-#define USE_TIMEOUT            1
-#define MINIMUM_DRAW_INTERVAL 50 /* 50 microseconds == 20 fps */
+#define DRAW_TIMEOUT              4
+#define USE_TIMEOUT               1
+#define MINIMUM_DRAW_INTERVAL 50000 /* 50000 microseconds == 20 fps */
 
 
 static void          gimp_draw_tool_dispose      (GObject          *object);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]