Skip to content

Commit

Permalink
Qt: Fix controller type combo box width
Browse files Browse the repository at this point in the history
  • Loading branch information
TellowKrinkle committed Jan 25, 2024
1 parent 49df804 commit 5fe1a37
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion pcsx2-qt/Settings/ControllerBindingWidget.ui
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
12 changes: 10 additions & 2 deletions pcsx2-qt/Settings/USBDeviceWidget.ui
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down

0 comments on commit 5fe1a37

Please sign in to comment.