summaryrefslogtreecommitdiff
path: root/SoftwareProperties
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-03-22 22:45:29 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2006-03-22 22:45:29 +0100
commit82583acbe28b9bbfc581df8081d22191af342801 (patch)
tree20498cc24815b3134f3088a6aed7003ed5ece826 /SoftwareProperties
parent7793c2ffc0e8e0dc551847144fcc27e0bf021cc1 (diff)
downloadpython-apt-82583acbe28b9bbfc581df8081d22191af342801.tar.gz
* fix a width limitation in the SoftwareProperties window
Diffstat (limited to 'SoftwareProperties')
-rw-r--r--SoftwareProperties/SoftwareProperties.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py
index ae2d5ecc..5d39f5b1 100644
--- a/SoftwareProperties/SoftwareProperties.py
+++ b/SoftwareProperties/SoftwareProperties.py
@@ -189,7 +189,7 @@ class SoftwareProperties(SimpleGladeApp):
tr.set_property("ypad", 10)
source_col = gtk.TreeViewColumn("Description", tr, markup=LIST_MARKUP)
- source_col.set_max_width(500)
+ #source_col.set_max_width(500)
toggle = gtk.CellRendererToggle()
toggle.connect("toggled", self.on_channel_toggled)