Reorder graphics config
This commit is contained in:
parent
769ba43abf
commit
e50a6f4c46
|
@ -74,13 +74,16 @@ void AdvancedWidget::CreateWidgets()
|
|||
m_enable_freelook = new GraphicsBool(tr("Free Look"), Config::GFX_FREE_LOOK);
|
||||
m_dump_use_ffv1 = new GraphicsBool(tr("Frame Dumps Use FFV1"), Config::GFX_USE_FFV1);
|
||||
|
||||
utility_layout->addWidget(m_dump_textures, 0, 0);
|
||||
utility_layout->addWidget(m_load_custom_textures, 0, 1);
|
||||
utility_layout->addWidget(m_prefetch_custom_textures, 1, 0);
|
||||
utility_layout->addWidget(m_use_fullres_framedumps, 1, 1);
|
||||
utility_layout->addWidget(m_dump_efb_target, 2, 0);
|
||||
utility_layout->addWidget(m_disable_vram_copies, 2, 1);
|
||||
utility_layout->addWidget(m_enable_freelook, 3, 0);
|
||||
utility_layout->addWidget(m_load_custom_textures, 0, 0);
|
||||
utility_layout->addWidget(m_prefetch_custom_textures, 0, 1);
|
||||
|
||||
utility_layout->addWidget(m_enable_freelook, 1, 0);
|
||||
utility_layout->addWidget(m_disable_vram_copies, 1, 1);
|
||||
|
||||
utility_layout->addWidget(m_dump_textures, 2, 0);
|
||||
utility_layout->addWidget(m_dump_efb_target, 2, 1);
|
||||
|
||||
utility_layout->addWidget(m_use_fullres_framedumps, 3, 0);
|
||||
#if defined(HAVE_FFMPEG)
|
||||
utility_layout->addWidget(m_dump_use_ffv1, 3, 1);
|
||||
#endif
|
||||
|
|
|
@ -97,13 +97,13 @@ void GeneralWidget::CreateWidgets()
|
|||
m_options_box->setLayout(m_options_layout);
|
||||
|
||||
m_options_layout->addWidget(m_show_fps, 0, 0);
|
||||
m_options_layout->addWidget(m_show_ping, 0, 1);
|
||||
m_options_layout->addWidget(m_log_render_time, 0, 1);
|
||||
|
||||
m_options_layout->addWidget(m_log_render_time, 1, 0);
|
||||
m_options_layout->addWidget(m_render_main_window, 1, 0);
|
||||
m_options_layout->addWidget(m_autoadjust_window_size, 1, 1);
|
||||
|
||||
m_options_layout->addWidget(m_show_messages, 2, 0);
|
||||
m_options_layout->addWidget(m_render_main_window, 2, 1);
|
||||
m_options_layout->addWidget(m_show_ping, 2, 1);
|
||||
|
||||
// Other
|
||||
auto* shader_compilation_box = new QGroupBox(tr("Shader Compilation"));
|
||||
|
|
Loading…
Reference in New Issue