From 4755aa3e234a7baafb6a95ee15a0f5024b36c52d Mon Sep 17 00:00:00 2001 From: Ricardo Mones Date: Wed, 19 Oct 2011 15:43:28 +0200 Subject: [PATCH] fix uninitialized spinboxes on win tab --- ChangeLog | 6 ++++++ VC | 2 +- VERSION | 2 +- clawsker | 1 + 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ef998e8..cea767e 100644 --- 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 4619a8a..8670c73 100644 --- a/VC +++ b/VC @@ -1 +1 @@ -451 +452 diff --git a/VERSION b/VERSION index ba63f7a..2d7ecfb 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.5git451 +0.7.5git452 diff --git a/clawsker b/clawsker index f628046..df1087b 100755 --- 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) = @_; -- 2.25.1