no warp buttons

This commit is contained in:
mdipierro
2013-01-09 12:50:05 -06:00
parent db1a788082
commit 9e9fde2e8f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.4.1-alpha.2+timestamp.2013.01.09.12.43.44
Version 2.4.1-alpha.2+timestamp.2013.01.09.12.49.10
+2 -2
View File
@@ -1866,7 +1866,7 @@ class SQLFORM(FORM):
def buttons(edit=False, view=False, record=None):
buttons = DIV(gridbutton('buttonback', 'Back', referrer),
_class='form_header row_buttons %(header)s %(cornertop)s' % ui,_nowrap=True)
_class='form_header row_buttons %(header)s %(cornertop)s' % ui)
if edit and (not callable(edit) or edit(record)):
args = ['edit', table._tablename, request.args[-1]]
buttons.append(gridbutton('buttonedit', 'Edit',
@@ -2279,7 +2279,7 @@ class SQLFORM(FORM):
elif not isinstance(value, DIV):
value = field.formatter(value)
trcols.append(TD(value))
row_buttons = TD(_class='row_buttons')
row_buttons = TD(_class='row_buttons',_nowrap=True)
if links and links_in_grid:
toadd = []
for link in links: