mirror of
https://github.com/onionshare/onionshare.git
synced 2025-06-01 12:44:21 -04:00
actually show those messages in the system tray, not still in the statusbar, and with the mandatory titles
This commit is contained in:
parent
5e4a4f6613
commit
b8cf692cd8
2 changed files with 6 additions and 4 deletions
|
@ -549,7 +549,7 @@ class OnionShareGui(QtWidgets.QMainWindow):
|
|||
"""
|
||||
common.log('OnionShareGui', 'copy_url')
|
||||
if self.systemTray.supportsMessages() and self.settings.get('systray_notifications'):
|
||||
self.status_bar.showMessage(strings._('gui_copied_url', True), 2000)
|
||||
self.systemTray.showMessage(strings._('gui_copied_url_title', True), strings._('gui_copied_url', True))
|
||||
|
||||
def copy_hidservauth(self):
|
||||
"""
|
||||
|
@ -557,7 +557,7 @@ class OnionShareGui(QtWidgets.QMainWindow):
|
|||
"""
|
||||
common.log('OnionShareGui', 'copy_hidservauth')
|
||||
if self.systemTray.supportsMessages() and self.settings.get('systray_notifications'):
|
||||
self.status_bar.showMessage(strings._('gui_copied_hidservauth', True), 2000)
|
||||
self.systemTray.showMessage(strings._('gui_copied_hidservauth_title', True), strings._('gui_copied_hidservauth', True))
|
||||
|
||||
def clear_message(self):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue