Fix single dialog get_source_list() call

This commit is contained in:
Ken Roberts 2014-10-21 16:51:51 -07:00
parent 5ae48da58e
commit 416c37140c
1 changed files with 1 additions and 3 deletions

View File

@ -295,9 +295,7 @@ class SourceSelectSingle(QDialog):
:param projector: Projector instance to build source list from
"""
self.projector = projector
self.source_text = self.projectordb.get_source_list(projector.manufacturer,
projector.model,
projector.source_available)
self.source_text = self.projectordb.get_source_list(projector=projector)
keys = list(self.source_text.keys())
keys.sort()
key_count = len(keys)