diff options
author | bfox <bfox> | 2001-08-01 18:46:45 +0000 |
---|---|---|
committer | bfox <bfox> | 2001-08-01 18:46:45 +0000 |
commit | c53c8c00d6b566ca7705a234974805b594a31a84 (patch) | |
tree | 0907e7489b1d086a98c6cb92122d673f767deaec /iw/dependencies_gui.py | |
parent | f0c146608412ffa01e822c053129ae060f1a92b5 (diff) | |
download | anaconda-c53c8c00d6b566ca7705a234974805b594a31a84.tar.gz anaconda-c53c8c00d6b566ca7705a234974805b594a31a84.tar.xz anaconda-c53c8c00d6b566ca7705a234974805b594a31a84.zip |
fix cosmetic problem with the column headers shrinking smaller than the column title if the package names are short. Resolves bug #49162
Diffstat (limited to 'iw/dependencies_gui.py')
-rw-r--r-- | iw/dependencies_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/dependencies_gui.py b/iw/dependencies_gui.py index bbd89c968..2ba309025 100644 --- a/iw/dependencies_gui.py +++ b/iw/dependencies_gui.py @@ -52,7 +52,7 @@ class UnresolvedDependenciesWindow (InstallWindow): list.freeze () for (name, suggest) in self.deps: list.append ((name, suggest)) - list.columns_autosize () + list.set_column_width(0, 160) list.thaw () sw.add (list) |