[GTK] Fix peers tab flag tooltip error

Hovering over a country flag resulted in an AttributeError.

This is due to get_tooltip_context now returning a bool value instead of
the tooltip object.

Fixes: #3219
This commit is contained in:
Calum Lind 2019-06-11 21:38:07 +01:00
parent f61001a15d
commit 7ee8750be4
2 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,10 @@
## 2.0.3 (WiP) ## 2.0.3 (WiP)
### Gtk UI
- Fix Peers Tab tooltip and context menu errors (#3266).
### Web UI ### Web UI
- Fix TypeError in Peers Tab setting country flag. - Fix TypeError in Peers Tab setting country flag.

View File

@ -352,10 +352,10 @@ class PeersTab(Tab):
return True return True
def _on_query_tooltip(self, widget, x, y, keyboard_tip, tooltip): def _on_query_tooltip(self, widget, x, y, keyboard_tip, tooltip):
tooltip, x, y, model, path, _iter = widget.get_tooltip_context( is_tooltip, x, y, model, path, _iter = widget.get_tooltip_context(
x, y, keyboard_tip x, y, keyboard_tip
) )
if tooltip: if is_tooltip:
country_code = model.get(_iter, 5)[0] country_code = model.get(_iter, 5)[0]
if country_code != ' ' and country_code in COUNTRIES: if country_code != ' ' and country_code in COUNTRIES:
tooltip.set_text(COUNTRIES[country_code]) tooltip.set_text(COUNTRIES[country_code])