-- don't mess up in winfo_visualsavailable if the system only

supports a single visual (closes bug #110603)
This commit is contained in:
Fredrik Lundh 2000-08-09 19:26:47 +00:00
parent 289ad8f063
commit 24037f735f
1 changed files with 2 additions and 0 deletions

View File

@ -774,6 +774,8 @@ class Misc:
data = self.tk.split(
self.tk.call('winfo', 'visualsavailable', self._w,
includeids and 'includeids' or None))
if type(data) is StringType:
data = [self.tk.split(data)]
return map(self.__winfo_parseitem, data)
def __winfo_parseitem(self, t):
"""Internal function."""