summaryrefslogtreecommitdiff
path: root/src/tabs/data_forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/tabs/data_forms.py')
-rw-r--r--src/tabs/data_forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tabs/data_forms.py b/src/tabs/data_forms.py
index dd03e5eb..bdefbfde 100644
--- a/src/tabs/data_forms.py
+++ b/src/tabs/data_forms.py
@@ -512,8 +512,8 @@ class FormWin(object):
for name, field in self._form.getFields().items():
if field['type'] == 'hidden':
continue
- self.inputs[i]['label'].resize(1, self.width//3, y + 1, 0)
- self.inputs[i]['input'].resize(1, self.width//3, y+1, 2*self.width//3)
+ self.inputs[i]['label'].resize(1, self.width//2, y + 1, 0)
+ self.inputs[i]['input'].resize(1, self.width//2, y+1, self.width//2)
# TODO: display the field description
y += 1
i += 1