Skip to content
Snippets Groups Projects
Commit 9892cce5 authored by inso's avatar inso
Browse files

Fix issue #385

parent 1cb0699f
No related branches found
No related tags found
No related merge requests found
...@@ -101,7 +101,8 @@ if __name__ == '__main__': ...@@ -101,7 +101,8 @@ if __name__ == '__main__':
app.start_coroutines() app.start_coroutines()
try: try:
if not app.blockchain_service.initialized(): if not app.blockchain_service.initialized():
box = QMessageBox("Initializing Sakia") box = QMessageBox()
box.setWindowTitle("Initialization")
box.setText("Connecting to the network...") box.setText("Connecting to the network...")
wFlags = box.windowFlags(); wFlags = box.windowFlags();
if Qt.WindowCloseButtonHint == (wFlags & Qt.WindowCloseButtonHint): if Qt.WindowCloseButtonHint == (wFlags & Qt.WindowCloseButtonHint):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment