mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Qt/GraphicsWindow: Disable unsupported options
This commit is contained in:
@ -165,6 +165,16 @@ void EnhancementsWidget::LoadSettings()
|
||||
m_pp_effect->setCurrentIndex(m_pp_effect->count() - 1);
|
||||
}
|
||||
|
||||
const bool supports_postprocessing = g_Config.backend_info.bSupportsPostProcessing;
|
||||
m_pp_effect->setEnabled(supports_postprocessing);
|
||||
|
||||
if (!supports_postprocessing)
|
||||
{
|
||||
m_pp_effect->setToolTip(
|
||||
tr("%1 doesn't support this feature.")
|
||||
.arg(QString::fromStdString(SConfig::GetInstance().m_strVideoBackend)));
|
||||
}
|
||||
|
||||
PostProcessingShaderConfiguration pp_shader;
|
||||
if (selected_shader != "(off)")
|
||||
{
|
||||
|
Reference in New Issue
Block a user