Configtool: implement tooltips for boolChoices.
Now these display bus type and display type choices have their help text, too.
This commit is contained in:
parent
813bdf4452
commit
eb8d918836
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue