Archived
1
1
Fork 0

subtitle tweaks

This commit is contained in:
Josh Lay 2023-05-11 21:36:15 -05:00
parent b4ebb37b11
commit e0401baa0e
Signed by: jlay
GPG key ID: B265E45CACAD108A

View file

@ -183,7 +183,8 @@ class app(App): # pylint: disable=invalid-name
# set the title - same as the class, but with spaces # set the title - same as the class, but with spaces
TITLE = 'AMD GPU Stats' TITLE = 'AMD GPU Stats'
SUB_TITLE = '' # set a default subtitle, will change with the active tab
SUB_TITLE = f'cards: {list(AMDGPU_CARDS)}'
# setup keybinds # setup keybinds
BINDINGS = [ BINDINGS = [
@ -243,9 +244,8 @@ class app(App): # pylint: disable=invalid-name
def on_tabbed_content_tab_activated(self, event: TabbedContent.TabActivated): def on_tabbed_content_tab_activated(self, event: TabbedContent.TabActivated):
"""Listens to 'TabActivated' event, sets subtitle""" """Listens to 'TabActivated' event, sets subtitle"""
# if self.tabbed_container.active == "tab_logs": active_tab = event.tabbed_content.active.replace('tab_', '')
active_title = event.tabbed_content.active.title().replace('Tab_', '') if active_tab == "logs":
if event.tabbed_content.active == "tab_logs": self.sub_title = active_tab # pylint: disable=attribute-defined-outside-init
self.sub_title = active_title # pylint: disable=attribute-defined-outside-init elif active_tab == "stats":
elif event.tabbed_content.active == "tab_stats": self.sub_title = f'cards: {list(AMDGPU_CARDS)}' # pylint: disable=attribute-defined-outside-init
self.sub_title = f'{active_title}: {list(AMDGPU_CARDS)}' # pylint: disable=attribute-defined-outside-init