Skip to content

Commit

Permalink
Update Babel_Thermal.py
Browse files Browse the repository at this point in the history
  • Loading branch information
spichardo committed Apr 6, 2024
1 parent 12fab5a commit 95be5d7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion BabelBrain/Babel_Thermal/Babel_Thermal.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def load_ui(self):
self.Widget.ExportSummary.clicked.connect(self.ExportSummary)
self.Widget.ExportThermalMap.clicked.connect(self.ExportThermalMap)

self.Widget.SelCombinationDropDown.currentIndexChanged.connect(self.UpdateThermalResults)
self.Widget.SelCombinationDropDown.currentIndexChanged.connect(self.UpdateSelCombination)
self.Widget.IsppaSpinBox.valueChanged.connect(self.UpdateThermalResults)
self.Widget.IsppaScrollBar.valueChanged.connect(self.UpdateThermalResults)
self.Widget.HideMarkscheckBox.stateChanged.connect(self.HideMarkChange)
Expand Down Expand Up @@ -236,6 +236,10 @@ def NotifyError(self):
def HideMarkChange(self,val):
self.UpdateThermalResults()

@Slot()
def UpdateSelCombination(self):
self.UpdateThermalResults()

@Slot()
def UpdateThermalResults(self,bUpdatePlot=True,OverWriteIsppa=None):
if self.bDisableUpdate:
Expand Down

0 comments on commit 95be5d7

Please sign in to comment.