diff options
author | Pranav P | 2023-05-15 19:53:05 +0530 |
---|---|---|
committer | Pranav P | 2023-05-15 19:53:05 +0530 |
commit | 5ade06b5d3559b1d01dafdfabcb71f169bfd633c (patch) | |
tree | 3b88b86a6684eac2b9bfa2138be8c3f056e59700 /src/ngspiceSimulation | |
parent | 9c0b9b9d9caa18f552fb764bea1dc685e17807ee (diff) | |
download | eSim-5ade06b5d3559b1d01dafdfabcb71f169bfd633c.tar.gz eSim-5ade06b5d3559b1d01dafdfabcb71f169bfd633c.tar.bz2 eSim-5ade06b5d3559b1d01dafdfabcb71f169bfd633c.zip |
Changed simulation status colour and dark mode icon path
Diffstat (limited to 'src/ngspiceSimulation')
-rw-r--r-- | src/ngspiceSimulation/NgspiceWidget.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py index f7c88ba9..9a56414b 100644 --- a/src/ngspiceSimulation/NgspiceWidget.py +++ b/src/ngspiceSimulation/NgspiceWidget.py @@ -83,8 +83,7 @@ class NgspiceWidget(QtWidgets.QWidget): else: self.progressBarUi.writeSimulationStatusToConsole(isSuccess=False) - scrollLength = self.progressBarUi.simulationConsole.verticalScrollBar().maximum() - self.progressBarUi.simulationConsole.verticalScrollBar().setValue(scrollLength) + self.progressBarUi.scrollConsoleToBottom() @QtCore.pyqtSlot() def readyReadAll(self): |