[Zope3-checkins] CVS: Products3/bugtracker/browser - bug.py:1.6
Stephan Richter
srichter@cosmos.phy.tufts.edu
Sat, 26 Jul 2003 16:13:37 -0400
Update of /cvs-repository/Products3/bugtracker/browser
In directory cvs.zope.org:/tmp/cvs-serv13068/browser
Modified Files:
bug.py
Log Message:
It was just too annoying not to get the bugs sorted by string value and not
in the numerical order. So I fixed that. I wonder whether it would be better
to implement our own container and only allow numerical ids.
=== Products3/bugtracker/browser/bug.py 1.5 => 1.6 ===
--- Products3/bugtracker/browser/bug.py:1.5 Sat Jul 26 13:52:47 2003
+++ Products3/bugtracker/browser/bug.py Sat Jul 26 16:13:32 2003
@@ -126,7 +126,7 @@
release_widget = CustomWidget(VocabularyFieldEditWidget, size=1)
- title_widget = CustomWidget(TextWidget, size=40)
+ title_widget = CustomWidget(TextWidget, style="width: 80%")
description_widget = CustomWidget(TextAreaWidget, height=10,
style="width: 100%")