From eabe189d80a81652c6652f481d483abca3f703c3 Mon Sep 17 00:00:00 2001 From: Leonardo Robol Date: Tue, 29 Sep 2009 18:48:43 +0200 Subject: [PATCH] Default nel numero di pagine a 1 --- DrPrintGui/Input.py | 1 + 1 file changed, 1 insertion(+) diff --git a/DrPrintGui/Input.py b/DrPrintGui/Input.py index 6205820..9db4481 100644 --- a/DrPrintGui/Input.py +++ b/DrPrintGui/Input.py @@ -286,6 +286,7 @@ class CopiesField(gtk.SpinButton): self.set_digits(0) self.set_increments(1,10) self.set_range(0,999) + self.set_value(1) def get_copies(self): return str(self.get_value()) -- 2.1.4