We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23cdf54 commit 00fba0eCopy full SHA for 00fba0e
cuegui/cuegui/HostMonitor.py
@@ -100,7 +100,9 @@ def setColumnOrder(self, settings):
100
def __filterByHostNameSetup(self, layout):
101
btn = QtWidgets.QLineEdit(self)
102
btn.setMaximumHeight(FILTER_HEIGHT)
103
- btn.setFixedWidth(155)
+ btn.setMinimumWidth(155)
104
+ btn.setMaximumWidth(345)
105
+ btn.sizeHint().setWidth(345)
106
btn.setFocusPolicy(QtCore.Qt.StrongFocus)
107
layout.addWidget(btn)
108
self.__filterByHostName = btn
0 commit comments