mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 07:51:27 +00:00
treor: better tooltips
This commit is contained in:
parent
a2fa26eb46
commit
0ceb7181d6
1 changed files with 2 additions and 1 deletions
|
@ -193,7 +193,8 @@ def qt_plugin_class(base_plugin_class):
|
||||||
for keystore in wallet.get_keystores():
|
for keystore in wallet.get_keystores():
|
||||||
if type(keystore) != self.keystore_class:
|
if type(keystore) != self.keystore_class:
|
||||||
continue
|
continue
|
||||||
button = StatusBarButton(QIcon(self.icon_file), self.device,
|
tooltip = self.device + ' ' + keystore.label
|
||||||
|
button = StatusBarButton(QIcon(self.icon_file), tooltip,
|
||||||
partial(self.settings_dialog, window, keystore))
|
partial(self.settings_dialog, window, keystore))
|
||||||
window.statusBar().addPermanentWidget(button)
|
window.statusBar().addPermanentWidget(button)
|
||||||
keystore.handler = self.create_handler(window)
|
keystore.handler = self.create_handler(window)
|
||||||
|
|
Loading…
Add table
Reference in a new issue