diff options
author | Eyantra698Sumanto | 2022-01-25 19:33:10 +0530 |
---|---|---|
committer | Eyantra698Sumanto | 2022-01-25 19:33:10 +0530 |
commit | 11567784e1f4bd344a0b95a77edf01eb89d55815 (patch) | |
tree | a7d5ee0735205d57c586c6618e9b896dbafe1d7f /src/frontEnd/Application.py | |
parent | 859a5e80688d98567735cf9fe95b856146517ef6 (diff) | |
download | eSim-11567784e1f4bd344a0b95a77edf01eb89d55815.tar.gz eSim-11567784e1f4bd344a0b95a77edf01eb89d55815.tar.bz2 eSim-11567784e1f4bd344a0b95a77edf01eb89d55815.zip |
Fixed netlist name
Diffstat (limited to 'src/frontEnd/Application.py')
-rw-r--r-- | src/frontEnd/Application.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/frontEnd/Application.py b/src/frontEnd/Application.py index a260bda6..2620fc9c 100644 --- a/src/frontEnd/Application.py +++ b/src/frontEnd/Application.py @@ -551,7 +551,7 @@ class Application(QtWidgets.QMainWindow): if self.obj_Mainview.obj_dockarea.ngspiceEditor( self.projDir) is False: print( - "No .cir.out file" + "No netlist file (*.cir.out)" "Check netlist file to change simulation parameters." ) @@ -559,7 +559,7 @@ class Application(QtWidgets.QMainWindow): self.msg.setModal(True) self.msg.setWindowTitle("Warning Message") self.msg.showMessage( - 'No .cir.out file' + 'No netlist file (*.cir.out)' ) self.msg.exec_() return @@ -591,7 +591,8 @@ class Application(QtWidgets.QMainWindow): if count >= 1000: print( "Ngspice taking too long for simulation. " - "Check netlist file to change simulation parameters." + "Check netlist file (*.cir.out) " + "to change simulation parameters." ) self.msg = QtWidgets.QErrorMessage() @@ -599,7 +600,8 @@ class Application(QtWidgets.QMainWindow): self.msg.setWindowTitle("Warning Message") self.msg.showMessage( 'Ngspice taking too long for simulation. ' - 'Check netlist file to change simulation parameters.' + 'Check netlist file (*.cir.out) ' + 'to change simulation parameters.' ) self.msg.exec_() @@ -752,7 +754,7 @@ class Application(QtWidgets.QMainWindow): else: self.msg = QtWidgets.QErrorMessage() self.msg.setModal(True) - self.msg.setWindowTitle("Missing Ngspice netlist") + self.msg.setWindowTitle("Missing Ngspice Netlist") self.msg.showMessage( 'Current project does not contain any Ngspice file. ' + 'Please create Ngspice file with extension .cir.out' |