diff options
author | Sunil Shetye | 2019-06-28 15:59:38 +0530 |
---|---|---|
committer | Sunil Shetye | 2019-07-01 12:12:45 +0530 |
commit | 70876a368e69d799bbe431254bd1a4ce7cea090c (patch) | |
tree | 095f995d82f204332ba61087a25b1cf77b48feb4 /src/frontEnd/Application.py | |
parent | 57d843c500d3a45de95fbac9c2a04c8a3670fb2a (diff) | |
download | eSim-70876a368e69d799bbe431254bd1a4ce7cea090c.tar.gz eSim-70876a368e69d799bbe431254bd1a4ce7cea090c.tar.bz2 eSim-70876a368e69d799bbe431254bd1a4ce7cea090c.zip |
directly select filename
Diffstat (limited to 'src/frontEnd/Application.py')
-rwxr-xr-x | src/frontEnd/Application.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontEnd/Application.py b/src/frontEnd/Application.py index 7478264a..4f77a321 100755 --- a/src/frontEnd/Application.py +++ b/src/frontEnd/Application.py @@ -214,8 +214,8 @@ class Application(QtGui.QMainWindow): 2. If 'No' is pressed: - the program just continues as it was doing earlier. ''' - exit_msg = "Are you sure you want to exit the program\ - ? All unsaved data will be lost." + exit_msg = "Are you sure you want to exit the program?" \ + " All unsaved data will be lost." reply = QtGui.QMessageBox.question( self, 'Message', exit_msg, QtGui.QMessageBox.Yes, QtGui.QMessageBox.No) |