Configtool: implement tooltips for boolChoices.

Now these display bus type and display type choices have their
help text, too.
This commit is contained in:
Markus Hitter 2016-05-30 14:31:40 +02:00
parent 813bdf4452
commit eb8d918836
1 changed files with 6 additions and 0 deletions

View File

@ -238,6 +238,12 @@ class Page:
if k in ht.keys():
self.choices[k].SetToolTipString(ht[k])
for k in self.boolChoices.keys():
for candidate in ht.keys():
if candidate.startswith(k):
self.boolChoices[k].SetToolTipString(ht[candidate])
break
def insertValues(self, cfgValues):
self.assertValid(True)
self.enableAll(True)