diff options
| author | EmulationFanatic <62343878+EmulationFanatic@users.noreply.github.com> | 2021-01-25 22:08:22 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-26 16:08:22 +1100 |
| commit | b0d3f1d06ff669c9e7af68080ae260207b8b10fb (patch) | |
| tree | 3641262c86903dbc0ec0079e460bb5947c9101fc | |
| parent | ad491b5570ec428d0d87d56426b03125e2ca5220 (diff) | |
GUI Update: Fix controller input window to fit all images without scrolling (#1962)
Currently, when configuring controller input with an "Xinput Controller" or "Unmapped Controller", the window does not fit the images for Pro Controller (width limited) or Joycon Pair (width and height limited). This PR proportionally enlarges the window so that no scrolling is ever necessary to fully see the controller image.
| -rw-r--r-- | Ryujinx/Ui/Windows/ControllerWindow.glade | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx/Ui/Windows/ControllerWindow.glade b/Ryujinx/Ui/Windows/ControllerWindow.glade index 2143e9de..d1ba42f4 100644 --- a/Ryujinx/Ui/Windows/ControllerWindow.glade +++ b/Ryujinx/Ui/Windows/ControllerWindow.glade @@ -48,8 +48,8 @@ <property name="title" translatable="yes">Ryujinx - Controller Settings</property> <property name="modal">True</property> <property name="window_position">center</property> - <property name="default_width">1100</property> - <property name="default_height">600</property> + <property name="default_width">1150</property> + <property name="default_height">690</property> <child type="titlebar"> <placeholder/> </child> |
