修改CTA模块的GUI中的单元格为固定高度

This commit is contained in:
chenxy123 2016-11-29 21:34:35 +08:00
parent edec3d263c
commit 875b25b59a

View File

@ -80,9 +80,9 @@ class CtaStrategyManager(QtGui.QGroupBox):
self.paramMonitor = CtaValueMonitor(self)
self.varMonitor = CtaValueMonitor(self)
maxHeight = 60
self.paramMonitor.setMaximumHeight(maxHeight)
self.varMonitor.setMaximumHeight(maxHeight)
height = 60
self.paramMonitor.setFixedHeight(height)
self.varMonitor.setFixedHeight(height)
buttonInit = QtGui.QPushButton(u'初始化')
buttonStart = QtGui.QPushButton(u'启动')