mirror of https://github.com/PCSX2/pcsx2.git
UI: Fix dithering description + make it so 4 lines of description fits
This commit is contained in:
parent
3928014e5c
commit
2d127039e1
|
@ -485,8 +485,9 @@ GraphicsSettingsWidget::GraphicsSettingsWidget(SettingsWindow* dialog, QWidget*
|
|||
dialog->registerWidgetHelp(m_ui.dithering, tr("Dithering"), tr("Unscaled (Default)"),
|
||||
tr("Reduces banding between colors and improves the perceived color depth.<br> "
|
||||
"Off: Disables any dithering.<br> "
|
||||
"Scaled: Upscaling-aware / Highest dithering effect.<br> "
|
||||
"Unscaled: Native Dithering / Lowest dithering effect does not increase size of squares when upscaling.<br> "
|
||||
"Scaled: Upscaling-aware / Highest dithering effect."));
|
||||
"Force 32bit: Treat all draws as if they were 32bit to avoid banding and dithering."));
|
||||
|
||||
dialog->registerWidgetHelp(m_ui.blending, tr("Blending Accuracy"), tr("Basic (Recommended)"),
|
||||
tr("Control the accuracy level of the GS blending unit emulation.<br> "
|
||||
|
|
|
@ -2,11 +2,6 @@
|
|||
<ui version="4.0">
|
||||
<class>SettingsWindow</class>
|
||||
<widget class="QWidget" name="SettingsWindow">
|
||||
<property name="windowIcon">
|
||||
<iconset>
|
||||
<normalon>:/icons/AppIcon64.png</normalon>
|
||||
</iconset>
|
||||
</property>
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
|
@ -24,6 +19,11 @@
|
|||
<property name="windowTitle">
|
||||
<string>PCSX2 Settings</string>
|
||||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset>
|
||||
<normalon>:/icons/AppIcon64.png</normalon>
|
||||
</iconset>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout" columnstretch="0,1">
|
||||
<item row="0" column="0">
|
||||
<widget class="QListWidget" name="settingsCategory">
|
||||
|
@ -68,13 +68,13 @@
|
|||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>120</height>
|
||||
<height>122</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<height>120</height>
|
||||
<height>122</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="readOnly">
|
||||
|
|
Loading…
Reference in New Issue