From 50cd4e9f954caaef80722ac095e97f3a5561dc3b Mon Sep 17 00:00:00 2001 From: Michael Wiebusch Date: Thu, 21 Aug 2014 14:31:31 +0200 Subject: [PATCH] fixes --- user_interface/gui.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/user_interface/gui.pl b/user_interface/gui.pl index bc03779..2913639 100755 --- a/user_interface/gui.pl +++ b/user_interface/gui.pl @@ -43,7 +43,8 @@ $hbox->pack_start($plot_button, FALSE, FALSE, 0); my $clear_button = Gtk2::Button->new('_Clear'); $hbox->pack_start($clear_button, FALSE, FALSE, 0); -my $windowLength_entry = Gtk2::Entry->new('100us'); +my $windowLength_entry = Gtk2::Entry->new; +$windowLength_entry->set_text('100us'); $hbox->pack_start($windowLength_entry, FALSE, FALSE, 0); my $setWindowLength_button = Gtk2::Button->new('_Set window length'); -- 2.43.0