set minimum size of content widget to be able to stretch it's size

This commit is contained in:
Jakub Trllo 2025-01-24 14:24:02 +01:00
parent cd3543f424
commit 509c6a84d3

View file

@ -1332,6 +1332,8 @@ class InstancesLogsView(QtWidgets.QFrame):
content_widget = QtWidgets.QWidget(content_wrap_widget)
content_widget.setAttribute(QtCore.Qt.WA_TranslucentBackground)
content_widget.setMinimumSize(80, 80)
content_layout = QtWidgets.QVBoxLayout(content_widget)
content_layout.setContentsMargins(8, 8, 8, 8)
content_layout.setSpacing(15)