remove tooltips on headers
This commit is contained in:
parent
19a32943d8
commit
487330fc57
|
@ -85,9 +85,9 @@ class DemoTips(TreeViewTooltips):
|
||||||
def get_tooltip(self, view, column, path):
|
def get_tooltip(self, view, column, path):
|
||||||
model = view.get_model()
|
model = view.get_model()
|
||||||
cards = model[path][0]
|
cards = model[path][0]
|
||||||
|
|
||||||
title=column.get_title()
|
title=column.get_title()
|
||||||
display='<big>%s</big>\n<i>%s</i>' % (title,onlinehelp[title])
|
if (title == 'Hand' or title == 'Game'): display='' #no tooltips on headers
|
||||||
|
else: display='<big>%s for %s</big>\n<i>%s</i>' % (title,cards,onlinehelp[title])
|
||||||
return (display)
|
return (display)
|
||||||
|
|
||||||
def location(self, x, y, w, h):
|
def location(self, x, y, w, h):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user