diff options
author | Matt Wilson <msw@redhat.com> | 2000-07-14 20:23:57 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-07-14 20:23:57 +0000 |
commit | e0049b8676c158268762e674150a4dae5dca853e (patch) | |
tree | 8720ec3a469ef21cf73afed2a04e8a9fb78789f7 /iw/xconfig_gui.py | |
parent | e7ce93ee1d476d4cb97114e7c2285db0929496a7 (diff) | |
download | anaconda-e0049b8676c158268762e674150a4dae5dca853e.tar.gz anaconda-e0049b8676c158268762e674150a4dae5dca853e.tar.xz anaconda-e0049b8676c158268762e674150a4dae5dca853e.zip |
move init script, sort monitors
Diffstat (limited to 'iw/xconfig_gui.py')
-rw-r--r-- | iw/xconfig_gui.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/iw/xconfig_gui.py b/iw/xconfig_gui.py index 4f74dfada..ff2ed2a58 100644 --- a/iw/xconfig_gui.py +++ b/iw/xconfig_gui.py @@ -178,7 +178,9 @@ class MonitorWindow (InstallWindow): select = None for man in keys: parent = ctree.insert_node (None, None, (man,), 2, is_leaf = FALSE) - for monitor in monitors[man]: + models = monitors[man] + models.sort() + for monitor in models: node = ctree.insert_node (parent, None, (monitor[0],), 2) ctree.node_set_row_data (node, monitor) if monitor[0] == self.todo.x.monID: |