Make ReceiveMode start using Uploads

This commit is contained in:
Micah Lee 2018-05-07 15:44:04 -07:00
parent a0db6d0ee7
commit 23821ebae6
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
3 changed files with 29 additions and 23 deletions

View file

@ -21,6 +21,7 @@ from PyQt5 import QtCore, QtWidgets, QtGui
from onionshare import strings
class Uploads(QtWidgets.QScrollArea):
"""
The uploads chunk of the GUI. This lists all of the active upload
@ -55,3 +56,9 @@ class Uploads(QtWidgets.QScrollArea):
layout.addStretch()
widget.setLayout(layout)
self.setWidget(widget)
def reset(self):
"""
Reset the uploads back to zero
"""
pass