mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-25 18:52:58 -03:00
18 lines
520 B
Python
18 lines
520 B
Python
from PyQt4 import QtCore, QtGui
|
|
|
|
import common
|
|
from onionshare import strings, helpers
|
|
|
|
class Options(QtGui.QHBoxLayout):
|
|
def __init__(self):
|
|
super(Options, self).__init__()
|
|
self.addSpacing(10)
|
|
|
|
# close automatically
|
|
self.close_automatically = QtGui.QCheckBox()
|
|
self.close_automatically.setCheckState(QtCore.Qt.Checked)
|
|
self.close_automatically.setText(strings._("close_on_finish"))
|
|
|
|
# add the widgets
|
|
self.addWidget(self.close_automatically)
|
|
|