Revision: 4207
Author: janne.t.harkonen
Date: Thu Sep 30 02:17:04 2010
Log: tuning
http://code.google.com/p/robotframework/source/detail?r=4207
Modified:
/trunk/proto/atdd-tutorial-berlin-2010/src/vacalc/ui.py
=======================================
--- /trunk/proto/atdd-tutorial-berlin-2010/src/vacalc/ui.py Thu Sep 30
02:14:28 2010
+++ /trunk/proto/atdd-tutorial-berlin-2010/src/vacalc/ui.py Thu Sep 30
02:17:04 2010
@@ -108,17 +108,17 @@
def _create_status_label(self):
self._status_label = JLabel(name='status_label',
- font=Font(Font.SERIF, Font.PLAIN, 9))
+ font=Font(Font.SERIF, Font.PLAIN, 10))
self.add(self._status_label)
self._add_with_padding(self._status_label, 5)
def _create_name_editor(self):
- self.add(JLabel(text='Employee Name'))
+ self.add(JLabel(text='Employee Name:'))
self._name_editor = FixedHeightTextField('name_input')
self._add_with_padding(self._name_editor, 5)
def _create_start_date_editor(self):
- self.add(JLabel(text='Start Date (YYYY-MM-DD)'))
+ self.add(JLabel(text='Start Date (YYYY-MM-DD):'))
self._start_date_editor = FixedHeightTextField('start_input')
self._add_with_padding(self._start_date_editor, 5)