mirror of
https://github.com/onionshare/onionshare.git
synced 2025-08-02 03:16:19 -04:00
ReceiveMode was overloading timer_callback instead of timer_callback_custom
This commit is contained in:
parent
9bb28c743a
commit
9caee6fb0d
2 changed files with 7 additions and 9 deletions
|
@ -51,12 +51,15 @@ class ReceiveMode(Mode):
|
|||
|
||||
# Layout
|
||||
self.layout.insertWidget(0, self.receive_info)
|
||||
|
||||
def timer_callback(self):
|
||||
|
||||
def timer_callback_custom(self):
|
||||
"""
|
||||
This method is called regularly on a timer while receive mode is active.
|
||||
This method is called regularly on a timer while share mode is active.
|
||||
"""
|
||||
pass
|
||||
# Scroll to the bottom of the download progress bar log pane if a new download has been added
|
||||
#if self.new_download:
|
||||
# self.downloads.downloads_container.vbar.setValue(self.downloads.downloads_container.vbar.maximum())
|
||||
# self.new_download = False
|
||||
|
||||
def get_stop_server_shutdown_timeout_text(self):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue