Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit f1f26420 authored by chrin's avatar chrin
Browse files

cast setFixedHeight argument to int

parent 350f2884
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ from common.packages import elog
from apps4ops.bdbase.utils import _line
from apps4ops.bdbase.enumkind import MsgSeverity
from caqtwidgets.pvwidgets import (
CAQLabel, CAQLineEdit, CAQMessageButton, CAQTableWidget,
CAQLabel, CAQLineEdit, CAQMenu, CAQMessageButton, CAQTableWidget,
CAQTextEntry, QHLine)
_pymodule = os.path.basename(__file__)
......@@ -83,13 +83,13 @@ class AppGui(QWidget):
if "Controlroom" in self.assigned_master:
'''
shift_type = CAQMenu(self, pv_name="PRO-HUSH:SHIFT-TYPE")
self.gui_frame.operator_parameters_group.layout().insertWidget(
0, QLabel(" Shift Type:"))
self.gui_frame.operator_parameters_group.layout().insertWidget(
1, shift_type)
'''
self.gui_frame.results_wgt.setFixedWidth(1400)
self.gui_frame.results_wgt.setFixedHeight(860)
self.gui_frame.results_wgt.setLayout(self.gui_frame.results_layout)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment