Call god what it is
parent
8296bc2699
commit
2e086375e7
|
@ -795,7 +795,7 @@ async def handle_keyboard_input(
|
||||||
# startup
|
# startup
|
||||||
bar = searchbar
|
bar = searchbar
|
||||||
search = searchbar.parent()
|
search = searchbar.parent()
|
||||||
chart = search.godwidget
|
godwidget = search.godwidget
|
||||||
view = bar.view
|
view = bar.view
|
||||||
view.set_font_size(bar.dpi_font.px_size)
|
view.set_font_size(bar.dpi_font.px_size)
|
||||||
|
|
||||||
|
@ -837,7 +837,7 @@ async def handle_keyboard_input(
|
||||||
# if nothing in search text show the cache
|
# if nothing in search text show the cache
|
||||||
view.set_section_entries(
|
view.set_section_entries(
|
||||||
'cache',
|
'cache',
|
||||||
list(reversed(chart._chart_cache)),
|
list(reversed(godwidget._chart_cache)),
|
||||||
clear_all=True,
|
clear_all=True,
|
||||||
)
|
)
|
||||||
continue
|
continue
|
||||||
|
@ -851,9 +851,9 @@ async def handle_keyboard_input(
|
||||||
search.bar.unfocus()
|
search.bar.unfocus()
|
||||||
|
|
||||||
# kill the search and focus back on main chart
|
# kill the search and focus back on main chart
|
||||||
if chart:
|
if godwidget:
|
||||||
print('focussing view')
|
print('focussing view')
|
||||||
chart.linkedsplits.focus()
|
godwidget.linkedsplits.focus()
|
||||||
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue