|
@@ -1252,13 +1252,17 @@ class ApplicationWindow(QtWidgets.QMainWindow):
|
1252
|
1252
|
self.ui.gpassSpinBox.value(), \
|
1253
|
1253
|
self.ui.gstopSpinBox.value(), \
|
1254
|
1254
|
str(self.ui.fTypeComboBox.currentText()),
|
1255
|
|
- self.ui.mplwidget)
|
|
1255
|
+ self.ui.mplwidget
|
|
1256
|
+ )
|
1256
|
1257
|
self.ui.lcdNumberFilterOrder.display(bord)
|
1257
|
1258
|
self.ui.lcdNumberFTauDead.display(1e3*fe)
|
1258
|
|
- #self.ui.lcdNumberFilterOrder.display(bord)
|
1259
|
1259
|
self.ui.bandPassGO.setEnabled(1)
|
1260
|
|
- # self.ui.lcdNumberTauPulse2.display(1e3*self.RAWDataProc.pulseLength[1])
|
1261
|
|
-
|
|
1260
|
+ # Hack for MacOS to force refresh of group box and plot
|
|
1261
|
+ self.ui.mplwidget.hide()
|
|
1262
|
+ self.ui.mplwidget.show()
|
|
1263
|
+ self.ui.BandPassBox.hide()
|
|
1264
|
+ self.ui.BandPassBox.show()
|
|
1265
|
+
|
1262
|
1266
|
def windowFilter(self):
|
1263
|
1267
|
|
1264
|
1268
|
if "Window filter" not in self.YamlNode.Processing.keys():
|
|
@@ -1295,6 +1299,11 @@ class ApplicationWindow(QtWidgets.QMainWindow):
|
1295
|
1299
|
self.ui.mplwidget )
|
1296
|
1300
|
|
1297
|
1301
|
self.ui.lcdWinDead.display(dead)
|
|
1302
|
+ # Hack for MacOS to force refresh of group box and plot
|
|
1303
|
+ self.ui.mplwidget.hide()
|
|
1304
|
+ self.ui.mplwidget.show()
|
|
1305
|
+ self.ui.windowFilterGroupBox.hide()
|
|
1306
|
+ self.ui.windowFilterGroupBox.show()
|
1298
|
1307
|
|
1299
|
1308
|
def updateProgressBar(self, percent):
|
1300
|
1309
|
self.ui.barProgress.setValue(percent)
|