Author: justi9
Date: 2008-12-05 16:59:00 -0500 (Fri, 05 Dec 2008)
New Revision: 2943
Modified:
mgmt/trunk/wooly/python/wooly/widgets.py
Log:
Shorten some more so actions fit
Modified: mgmt/trunk/wooly/python/wooly/widgets.py
===================================================================
--- mgmt/trunk/wooly/python/wooly/widgets.py 2008-12-05 21:46:33 UTC (rev 2942)
+++ mgmt/trunk/wooly/python/wooly/widgets.py 2008-12-05 21:59:00 UTC (rev 2943)
@@ -443,8 +443,8 @@
escapable = True
if type(value) is str and escapable:
- if len(value) > 36:
- value = value[:36] + "..."
+ if len(value) > 30:
+ value = value[:30] + "..."
value = escape(value)
elif value is None:
Show replies by date