mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
close automatically checkbox respects --stay-open argument again
This commit is contained in:
parent
49eac35196
commit
9cb1871b02
@ -48,7 +48,7 @@ class OnionShareGui(QtGui.QWidget):
|
||||
downloads = Downloads()
|
||||
|
||||
# options
|
||||
options = Options()
|
||||
options = Options(web.stay_open)
|
||||
|
||||
# main layout
|
||||
self.layout = QtGui.QVBoxLayout()
|
||||
|
@ -4,13 +4,16 @@ import common
|
||||
from onionshare import strings, helpers
|
||||
|
||||
class Options(QtGui.QHBoxLayout):
|
||||
def __init__(self):
|
||||
def __init__(self, stay_open=False):
|
||||
super(Options, self).__init__()
|
||||
self.addSpacing(10)
|
||||
|
||||
# close automatically
|
||||
self.close_automatically = QtGui.QCheckBox()
|
||||
self.close_automatically.setCheckState(QtCore.Qt.Checked)
|
||||
if stay_open:
|
||||
self.close_automatically.setCheckState(QtCore.Qt.Unchecked)
|
||||
else:
|
||||
self.close_automatically.setCheckState(QtCore.Qt.Checked)
|
||||
self.close_automatically.setText(strings._("close_on_finish"))
|
||||
|
||||
# add the widgets
|
||||
|
Loading…
Reference in New Issue
Block a user