aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2007-12-03 20:17:31 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2007-12-03 20:17:31 +0000
commit96e82fb78f0a8b3fd710c111369a9bb95bd1e887 (patch)
treec13ea9934d162f1faf29a3c26d8282b97d0b4b77 /gtk
parent20b383c1b1f246db21bb61c04f7eab3665f0e816 (diff)
Added two more y axis scale values to be able to draw time values up to
200 seconds. svn path=/trunk/; revision=23710
Diffstat (limited to 'gtk')
-rw-r--r--gtk/io_stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/io_stat.c b/gtk/io_stat.c
index b32bd82c8e..a358c407aa 100644
--- a/gtk/io_stat.c
+++ b/gtk/io_stat.c
@@ -62,9 +62,9 @@ void unprotect_thread_critical_region(void);
#define MAX_GRAPHS 5
-#define MAX_YSCALE 22
+#define MAX_YSCALE 24
#define AUTO_MAX_YSCALE 0
-static guint32 yscale_max[MAX_YSCALE] = {AUTO_MAX_YSCALE, 10, 20, 50, 100, 200, 500, 1000, 2000, 5000, 10000, 20000, 50000, 100000, 200000, 500000, 1000000, 2000000, 5000000, 10000000, 20000000, 50000000};
+static guint32 yscale_max[MAX_YSCALE] = {AUTO_MAX_YSCALE, 10, 20, 50, 100, 200, 500, 1000, 2000, 5000, 10000, 20000, 50000, 100000, 200000, 500000, 1000000, 2000000, 5000000, 10000000, 20000000, 50000000, 100000000, 200000000};
#define MAX_PIXELS_PER_TICK 4
#define DEFAULT_PIXELS_PER_TICK 2