Source code for IQM_Vis.UI.utils
# Author: Matt Clifford <matt.clifford@bristol.ac.uk>
# License: BSD 3-Clause License
from PyQt6.QtWidgets import QWidget
[docs]def add_layout_to_tab(tab, layout, name):
_tab = QWidget() # QTabWidget only accepts widgets not layouts so need to use this as a workaround
_tab.setLayout(layout)
tab.addTab(_tab, name)