mirror of https://github.com/PCSX2/pcsx2.git
Qt: Remove hardware download mode from global settings
Previously it would be disabled, leading to user confusion.
This commit is contained in:
parent
20193eae36
commit
d1891fc31c
|
@ -336,12 +336,13 @@ GraphicsSettingsWidget::GraphicsSettingsWidget(SettingsDialog* dialog, QWidget*
|
|||
updateRendererDependentOptions();
|
||||
|
||||
#ifndef PCSX2_DEVBUILD
|
||||
// only allow disabling readbacks for per-game settings, it's too dangerous
|
||||
m_ui.gsDownloadMode->setEnabled(m_dialog->isPerGameSettings());
|
||||
|
||||
// Remove texture offset and skipdraw range for global settings.
|
||||
if (!m_dialog->isPerGameSettings())
|
||||
{
|
||||
// Only allow disabling readbacks for per-game settings, it's too dangerous.
|
||||
m_ui.advancedDebugFormLayout->removeRow(2);
|
||||
m_ui.gsDownloadMode = nullptr;
|
||||
|
||||
// Remove texture offset and skipdraw range for global settings.
|
||||
m_ui.upscalingFixesLayout->removeRow(2);
|
||||
m_ui.hardwareFixesLayout->removeRow(2);
|
||||
m_ui.hardwareFixesLayout->removeRow(1);
|
||||
|
|
|
@ -1596,7 +1596,7 @@
|
|||
<property name="title">
|
||||
<string>Debug Options</string>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout_6">
|
||||
<layout class="QFormLayout" name="advancedDebugFormLayout">
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_19">
|
||||
<property name="text">
|
||||
|
|
Loading…
Reference in New Issue