Qt: Fix controller type combo box width

This commit is contained in:
TellowKrinkle 2024-01-25 00:43:01 -06:00
parent 49df804d1b
commit 5fe1a3776c
2 changed files with 15 additions and 3 deletions

View File

@ -32,7 +32,11 @@
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QComboBox" name="controllerType"/>
<widget class="QComboBox" name="controllerType">
<property name="sizeAdjustPolicy">
<enum>QComboBox::AdjustToContents</enum>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="bindings">

View File

@ -32,10 +32,18 @@
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QComboBox" name="deviceType"/>
<widget class="QComboBox" name="deviceType">
<property name="sizeAdjustPolicy">
<enum>QComboBox::AdjustToContents</enum>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="deviceSubtype"/>
<widget class="QComboBox" name="deviceSubtype">
<property name="sizeAdjustPolicy">
<enum>QComboBox::AdjustToContents</enum>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="bindings">