fix uninitialized spinboxes on win tab
authorRicardo Mones <ricardo@mones.org>
Wed, 19 Oct 2011 13:43:28 +0000 (15:43 +0200)
committerRicardo Mones <ricardo@mones.org>
Wed, 19 Oct 2011 13:43:28 +0000 (15:43 +0200)
ChangeLog
VC
VERSION
clawsker

index ef998e84ae90b34ad4f7ecedc225eecf349f7b6e..cea767e338023c0a582c9125fcb3e9d5aa0202aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-10-19 15:38  mones   0.7.5git452
+
+       * clawsker
+               Fix bug on Windows tab: values of spinboxes not initialized
+               
+
 2011-10-17 16:10  mones   0.7.5git451
 
        * po/Makefile
diff --git a/VC b/VC
index 4619a8a02f1b159c684341b13c9ac47e655349d3..8670c7352008df69e5641de427fd2ce923611a18 100644 (file)
--- a/VC
+++ b/VC
@@ -1 +1 @@
-451
+452
diff --git a/VERSION b/VERSION
index ba63f7a1f7ed33b800ad0d20a53cd8304a6f54a9..2d7ecfb4e03f749643933874115c265f3773b007 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.7.5git451
+0.7.5git452
index f628046e6847bc952356bd5cd2096997ca1f9f3c..df1087b5b3773bc651e1d132283c2b0b978b12ea 100755 (executable)
--- a/clawsker
+++ b/clawsker
@@ -406,6 +406,7 @@ sub new_text_box_for_int {
     my $pagei = int (($type[2] - $type[1]) / 10);
     my $gentry = Gtk2::SpinButton->new_with_range ($type[1], $type[2], $pagei);
     $gentry->set_numeric (TRUE);
+    $gentry->set_value ($HPVALUE{$name});
     $$hash{$key}[GUI] = $gentry;
     $gentry->signal_connect('value-changed' => sub {
             my ($w, $e) = @_;