diff options
author | Sumanto Kar | 2025-06-20 03:55:52 +0530 |
---|---|---|
committer | GitHub | 2025-06-20 03:55:52 +0530 |
commit | a656515f05ba1db072a3102afea47e503076f480 (patch) | |
tree | c7b47bfbd0c348d37a5bacda2f6f7324254e503d /src | |
parent | 527d5b553779a2aca619dd5f61e95a53699eb5cd (diff) | |
download | eSim-a656515f05ba1db072a3102afea47e503076f480.tar.gz eSim-a656515f05ba1db072a3102afea47e503076f480.tar.bz2 eSim-a656515f05ba1db072a3102afea47e503076f480.zip |
Fixed some names DockArea.py
Diffstat (limited to 'src')
-rwxr-xr-x | src/frontEnd/DockArea.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/frontEnd/DockArea.py b/src/frontEnd/DockArea.py index d73e556b..d68085f5 100755 --- a/src/frontEnd/DockArea.py +++ b/src/frontEnd/DockArea.py @@ -16,7 +16,7 @@ from converter.pspiceToKicad import PspiceConverter from converter.ltspiceToKicad import LTspiceConverter from converter.LtspiceLibConverter import LTspiceLibConverter from converter.libConverter import PspiceLibConverter -from converter.browseSchematics import browse_path +from converter.browseSchematic import browse_path dockList = ['Welcome'] count = 1 dock = {} @@ -172,7 +172,7 @@ class DockArea(QtWidgets.QMainWindow): """This function creates a widget for eSimConverter.""" global count - dockName = 'Schematics Converter-' + dockName = 'Schematic Converter-' self.eConWidget = QtWidgets.QWidget() self.eConLayout = QVBoxLayout() # QVBoxLayout for the main layout @@ -205,7 +205,7 @@ class DockArea(QtWidgets.QMainWindow): upload_button2.clicked.connect(lambda: self.pspiceLib_converter.upload_file_Pspice(file_path_text_box.text())) button_layout.addWidget(upload_button2) - upload_button1 = QPushButton("Convert Pspice schematics") + upload_button1 = QPushButton("Convert Pspice schematic") upload_button1.setFixedSize(180, 30) upload_button1.clicked.connect(lambda: self.pspice_converter.upload_file_Pspice(file_path_text_box.text())) button_layout.addWidget(upload_button1) @@ -215,7 +215,7 @@ class DockArea(QtWidgets.QMainWindow): upload_button3.clicked.connect(lambda: self.ltspiceLib_converter.upload_file_LTspice(file_path_text_box.text())) button_layout.addWidget(upload_button3) - upload_button = QPushButton("Convert LTspice schematics") + upload_button = QPushButton("Convert LTspice schematic") upload_button.setFixedSize(184, 30) upload_button.clicked.connect(lambda: self.ltspice_converter.upload_file_LTspice(file_path_text_box.text())) button_layout.addWidget(upload_button) @@ -267,9 +267,9 @@ class DockArea(QtWidgets.QMainWindow): <p> <b>Pspice to eSim </b> will convert the PSpice Schematic and Library files to KiCad Schematic and Library files respectively with proper mapping of the components and the wiring. By this way one - will be able to simulate their schematics in PSpice and get the PCB layout in KiCad.</b> + will be able to simulate their schematic in PSpice and get the PCB layout in KiCad.</b> <br/><br/> - <b>LTspice to eSim </b> will convert symbols and schematics from LTspice to Kicad.The goal is to design and + <b>LTspice to eSim </b> will convert symbols and schematic from LTspice to Kicad.The goal is to design and simulate under LTspice and to automatically transfer the circuit under Kicad to draw the PCB.</b> </p> </body> |