Merge pull request #8459 from jordan-woyak/io-window-button-fix
DolphinQt: Hide unused buttons in the advanced mapping dialog.
This commit is contained in:
commit
877519a0a5
|
@ -323,12 +323,24 @@ void IOWindow::CreateMainLayout()
|
||||||
hbox->addLayout(button_vbox, 1);
|
hbox->addLayout(button_vbox, 1);
|
||||||
|
|
||||||
button_vbox->addWidget(m_select_button);
|
button_vbox->addWidget(m_select_button);
|
||||||
button_vbox->addWidget(m_type == Type::Input ? m_detect_button : m_test_button);
|
|
||||||
button_vbox->addWidget(m_operators_combo);
|
|
||||||
if (m_type == Type::Input)
|
if (m_type == Type::Input)
|
||||||
{
|
{
|
||||||
button_vbox->addWidget(m_functions_combo);
|
m_test_button->hide();
|
||||||
|
button_vbox->addWidget(m_detect_button);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
m_detect_button->hide();
|
||||||
|
button_vbox->addWidget(m_test_button);
|
||||||
|
}
|
||||||
|
|
||||||
|
button_vbox->addWidget(m_operators_combo);
|
||||||
|
|
||||||
|
if (m_type == Type::Input)
|
||||||
|
button_vbox->addWidget(m_functions_combo);
|
||||||
|
else
|
||||||
|
m_functions_combo->hide();
|
||||||
|
|
||||||
m_main_layout->addLayout(hbox, 2);
|
m_main_layout->addLayout(hbox, 2);
|
||||||
m_main_layout->addWidget(m_expression_text, 1);
|
m_main_layout->addWidget(m_expression_text, 1);
|
||||||
|
|
Loading…
Reference in New Issue