feat: add tooltips for sidebar items in the browse cards window (#4385)

* feat: add tooltips for all of the sidabar items in the browse cards window

* fix: add name to CONTRIBUTORS
This commit is contained in:
nav1s 2025-10-13 09:27:40 +03:00 committed by GitHub
parent 76d3237139
commit ab2fe98c54
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -250,7 +250,7 @@ Danilo Spillebeen <spillebeendanilo@gmail.com>
Matbe766 <matildabergstrom01@gmail.com>
Amanda Sternberg <mandis.sternberg@gmail.com>
arold0 <arold0@icloud.com>
nav1s <nav1s@proton.me>
********************

View file

@ -80,7 +80,7 @@ class SidebarItem:
self.search_node = search_node
self.on_expanded = on_expanded
self.children: list[SidebarItem] = []
self.tooltip: str | None = None
self.tooltip: str = name
self._parent_item: SidebarItem | None = None
self._expanded = expanded
self._row_in_parent: int | None = None