mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-01 04:05:38 +00:00
Qt: Add tooltip for stretch/expansion advanced settings
This commit is contained in:
parent
eb91fe31e2
commit
106f2c10ba
|
@ -107,10 +107,15 @@ AudioSettingsWidget::AudioSettingsWidget(SettingsWindow* dialog, QWidget* parent
|
||||||
dialog->registerWidgetHelp(m_ui.expansionMode, tr("Expansion Mode"), tr("Disabled (Stereo)"),
|
dialog->registerWidgetHelp(m_ui.expansionMode, tr("Expansion Mode"), tr("Disabled (Stereo)"),
|
||||||
tr("Determines how audio is expanded from stereo to surround for supported games. This "
|
tr("Determines how audio is expanded from stereo to surround for supported games. This "
|
||||||
"includes games that support Dolby Pro Logic/Pro Logic II."));
|
"includes games that support Dolby Pro Logic/Pro Logic II."));
|
||||||
|
dialog->registerWidgetHelp(m_ui.expansionSettings, tr("Expansion Settings"), tr("N/A"),
|
||||||
|
tr("These settings fine-tune the behavior of the FreeSurround-based channel expander."));
|
||||||
dialog->registerWidgetHelp(
|
dialog->registerWidgetHelp(
|
||||||
m_ui.stretchMode, tr("Stretch Mode"), tr("Time Stretching"),
|
m_ui.stretchMode, tr("Stretch Mode"), tr("Time Stretching"),
|
||||||
tr("When running outside of 100% speed, adjusts the tempo on audio instead of dropping frames. Produces "
|
tr("When running outside of 100% speed, adjusts the tempo on audio instead of dropping frames. Produces "
|
||||||
"much nicer fast forward/slowdown audio at a small cost to performance."));
|
"much nicer fast forward/slowdown audio at a small cost to performance."));
|
||||||
|
dialog->registerWidgetHelp(m_ui.stretchSettings, tr("Stretch Settings"), tr("N/A"),
|
||||||
|
tr("These settings fine-tune the behavior of the SoundTouch audio time stretcher when "
|
||||||
|
"running outside of 100% speed."));
|
||||||
}
|
}
|
||||||
|
|
||||||
AudioSettingsWidget::~AudioSettingsWidget() = default;
|
AudioSettingsWidget::~AudioSettingsWidget() = default;
|
||||||
|
|
|
@ -159,6 +159,9 @@
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="expansionSettings">
|
<widget class="QToolButton" name="expansionSettings">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Expansion Settings</string>
|
||||||
|
</property>
|
||||||
<property name="icon">
|
<property name="icon">
|
||||||
<iconset theme="settings-3-line"/>
|
<iconset theme="settings-3-line"/>
|
||||||
</property>
|
</property>
|
||||||
|
@ -173,6 +176,9 @@
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QToolButton" name="stretchSettings">
|
<widget class="QToolButton" name="stretchSettings">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Stretch Settings</string>
|
||||||
|
</property>
|
||||||
<property name="icon">
|
<property name="icon">
|
||||||
<iconset theme="settings-3-line"/>
|
<iconset theme="settings-3-line"/>
|
||||||
</property>
|
</property>
|
||||||
|
|
Loading…
Reference in a new issue