diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-03-29 12:12:39 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-03-29 12:12:39 +0000 |
| commit | 788631e9d94a53a43fa127dcc2de4ce8fe05dca2 (patch) | |
| tree | 3ee4fef3f974e8cb53dd1653f32d75df2bed7be8 /lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py | |
| parent | be97d632ac31d3dbc1477afd6144b7bbfac77ba7 (diff) | |
| download | enigma2-788631e9d94a53a43fa127dcc2de4ce8fe05dca2.tar.gz enigma2-788631e9d94a53a43fa127dcc2de4ce8fe05dca2.zip | |
order InputChannel list.. (DVI, Scart, YPbPr)
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py index 0e67fb62..cb64f9ac 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py @@ -79,6 +79,7 @@ class VideoWizard(Wizard): for port in self.hw.getPortList(): if self.hw.isPortUsed(port): list.append((port,port)) + list.sort(key = lambda x: x[0]) print "listInputChannels:", list return list |
