Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2013-06-26 07:30:29 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2013-06-26 07:30:29 (GMT)
commit98b304f449478e5758676004da0b511a60e6106e (patch)
treed9e4e1026d38f2a85b91c7bc8adf39863ed175da /activity.py
parenta9c6912f9aed4e9616d9e0a3e8e266bdf7e86d92 (diff)
update max year
Diffstat (limited to 'activity.py')
-rwxr-xr-xactivity.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/activity.py b/activity.py
index 8e32773..963c6f9 100755
--- a/activity.py
+++ b/activity.py
@@ -122,7 +122,7 @@ class Activity(activity.Activity):
item6 = gtk.ToolItem()
self.year_birth_spin = gtk.SpinButton()
- self.year_birth_spin.set_range(1900, 2012)
+ self.year_birth_spin.set_range(1900, 2013)
self.year_birth_spin.set_increments(1, 10)
self.year_birth_spin.props.value = 2011
self.year_birth_spin.connect('notify::value', self.year_birth_change)
@@ -178,7 +178,7 @@ class Activity(activity.Activity):
item6 = gtk.ToolItem()
self.year_today_spin = gtk.SpinButton()
- self.year_today_spin.set_range(1900, 2012)
+ self.year_today_spin.set_range(1900, 2013)
self.year_today_spin.set_increments(1, 10)
self.year_today_spin.props.value = self._today[2]
self.year_today_spin.connect('notify::value', self.year_today_change)