gfio: use current value of graph limit as the default
authorJens Axboe <axboe@kernel.dk>
Sun, 11 Mar 2012 12:05:35 +0000 (13:05 +0100)
committerJens Axboe <axboe@kernel.dk>
Sun, 11 Mar 2012 12:05:35 +0000 (13:05 +0100)
Signed-off-by: Jens Axboe <axboe@kernel.dk>
gfio.c

diff --git a/gfio.c b/gfio.c
index 936e41db2117c22d16a68ea09eb1770b7ddd74f9..16cb4da88dab683e046c3ecd1f76f4edd8a14d37 100644 (file)
--- a/gfio.c
+++ b/gfio.c
@@ -2098,7 +2098,7 @@ static void preferences(GtkWidget *w, gpointer data)
        entry = gtk_label_new("Maximum number of data points in graph (seconds)");
        gtk_box_pack_start(GTK_BOX(hbox), entry, FALSE, FALSE, 5);
 
-       spin = create_spinbutton(hbox, 10, 1000000, 100);
+       spin = create_spinbutton(hbox, 10, 1000000, gfio_graph_limit);
 
        box = gtk_vbox_new(FALSE, 6);
        gtk_box_pack_start(GTK_BOX(vbox), box, FALSE, FALSE, 5);