Browse Source

Network dialog -> window modal

Clean up imports
283
Neil Booth 9 years ago
parent
commit
7437746cd2
  1. 13
      gui/qt/network_dialog.py

13
gui/qt/network_dialog.py

@ -16,30 +16,21 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys, time, datetime, re, threading
import os.path, json, ast, traceback
from PyQt4.QtGui import * from PyQt4.QtGui import *
from PyQt4.QtCore import * from PyQt4.QtCore import *
from electrum.i18n import _ from electrum.i18n import _
from electrum.util import print_error, print_msg
from electrum import DEFAULT_PORTS from electrum import DEFAULT_PORTS
from electrum.network import serialize_server, deserialize_server from electrum.network import serialize_server, deserialize_server
from util import * from util import *
#protocol_names = ['TCP', 'HTTP', 'SSL', 'HTTPS']
#protocol_letters = 'thsg'
protocol_names = ['TCP', 'SSL'] protocol_names = ['TCP', 'SSL']
protocol_letters = 'ts' protocol_letters = 'ts'
class NetworkDialog(QDialog): class NetworkDialog(WindowModalDialog):
def __init__(self, network, config, parent): def __init__(self, network, config, parent):
WindowModalDialog.__init__(self, parent, _('Network'))
QDialog.__init__(self,parent)
self.setModal(1)
self.setWindowTitle(_('Network'))
self.setMinimumSize(375, 20) self.setMinimumSize(375, 20)
self.network = network self.network = network

Loading…
Cancel
Save