diff options
| author | Tilka <tilkax@gmail.com> | 2018-05-18 02:24:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-18 02:24:08 +0100 |
| commit | cbc85d928baab02d167a14b5ec550fdab7a600de (patch) | |
| tree | 366c9c802cf4b6d2a51a10c25ea96c83bf75a52c /Source/Core | |
| parent | e67f2dcadab0b022b1e1923209b425d40b45c9ab (diff) | |
| parent | ff971b1a6ffbfdc0f51a0bccaa4cab3888371e47 (diff) | |
Merge pull request #6860 from Zexaron/qt_generalwidget_remove_wrong_description
Qt/GeneralWidget remove unnecesary description wiring
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp b/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp index b9b5cfa3e3..2e3a902101 100644 --- a/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp +++ b/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp @@ -303,16 +303,15 @@ void GeneralWidget::AddDescriptions() AddDescription(m_backend_combo, TR_BACKEND_DESCRIPTION); AddDescription(m_adapter_combo, TR_ADAPTER_DESCRIPTION); - AddDescription(m_enable_fullscreen, TR_FULLSCREEN_DESCRIPTION); - AddDescription(m_autoadjust_window_size, TR_AUTOSIZE_DESCRIPTION); - AddDescription(m_render_main_window, TR_RENDER_TO_MAINWINDOW_DESCRIPTION); AddDescription(m_aspect_combo, TR_ASPECT_RATIO_DESCRIPTION); AddDescription(m_enable_vsync, TR_VSYNC_DESCRIPTION); + AddDescription(m_enable_fullscreen, TR_FULLSCREEN_DESCRIPTION); AddDescription(m_show_fps, TR_SHOW_FPS_DESCRIPTION); AddDescription(m_show_ping, TR_SHOW_NETPLAY_PING_DESCRIPTION); AddDescription(m_log_render_time, TR_LOG_RENDERTIME_DESCRIPTION); - AddDescription(m_show_messages, TR_SHOW_FPS_DESCRIPTION); + AddDescription(m_autoadjust_window_size, TR_AUTOSIZE_DESCRIPTION); AddDescription(m_show_messages, TR_SHOW_NETPLAY_MESSAGES_DESCRIPTION); + AddDescription(m_render_main_window, TR_RENDER_TO_MAINWINDOW_DESCRIPTION); AddDescription(m_shader_compilation_mode[0], TR_SHADER_COMPILE_SYNC_DESCRIPTION); AddDescription(m_shader_compilation_mode[1], TR_SHADER_COMPILE_UBER_ONLY_DESCRIPTION); AddDescription(m_shader_compilation_mode[2], TR_SHADER_COMPILE_ASYNC_UBER_DESCRIPTION); |
