[gimp] Bug 663582 - Brush outline is too slow
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] Bug 663582 - Brush outline is too slow
- Date: Fri, 5 Oct 2012 22:05:12 +0000 (UTC)
commit db5c952c4e01f3055e6f77a0315be42f52382501
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.
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 eb19032..c20886e 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]