mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 04:37:22 -05:00
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:
parent
76d3237139
commit
ab2fe98c54
2 changed files with 2 additions and 2 deletions
|
|
@ -250,7 +250,7 @@ Danilo Spillebeen <spillebeendanilo@gmail.com>
|
||||||
Matbe766 <matildabergstrom01@gmail.com>
|
Matbe766 <matildabergstrom01@gmail.com>
|
||||||
Amanda Sternberg <mandis.sternberg@gmail.com>
|
Amanda Sternberg <mandis.sternberg@gmail.com>
|
||||||
arold0 <arold0@icloud.com>
|
arold0 <arold0@icloud.com>
|
||||||
|
nav1s <nav1s@proton.me>
|
||||||
|
|
||||||
********************
|
********************
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@ class SidebarItem:
|
||||||
self.search_node = search_node
|
self.search_node = search_node
|
||||||
self.on_expanded = on_expanded
|
self.on_expanded = on_expanded
|
||||||
self.children: list[SidebarItem] = []
|
self.children: list[SidebarItem] = []
|
||||||
self.tooltip: str | None = None
|
self.tooltip: str = name
|
||||||
self._parent_item: SidebarItem | None = None
|
self._parent_item: SidebarItem | None = None
|
||||||
self._expanded = expanded
|
self._expanded = expanded
|
||||||
self._row_in_parent: int | None = None
|
self._row_in_parent: int | None = None
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue