mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-04 16:32:39 +00:00
Rename borderless windowed
This commit is contained in:
parent
b525dbd2e4
commit
090495d272
@ -77,7 +77,8 @@ SettingsDialog::SettingsDialog(std::span<const QString> physical_devices,
|
|||||||
|
|
||||||
channelMap = {{tr("Release"), "Release"}, {tr("Nightly"), "Nightly"}};
|
channelMap = {{tr("Release"), "Release"}, {tr("Nightly"), "Nightly"}};
|
||||||
logTypeMap = {{tr("async"), "async"}, {tr("sync"), "sync"}};
|
logTypeMap = {{tr("async"), "async"}, {tr("sync"), "sync"}};
|
||||||
screenModeMap = {{tr("Borderless"), "Borderless"}, {tr("Windowed"), "Windowed"}};
|
screenModeMap = {{tr("Fullscreen (Borderless)"), "Fullscreen (Borderless)"},
|
||||||
|
{tr("Windowed"), "Windowed"}};
|
||||||
chooseHomeTabMap = {{tr("General"), "General"}, {tr("GUI"), "GUI"},
|
chooseHomeTabMap = {{tr("General"), "General"}, {tr("GUI"), "GUI"},
|
||||||
{tr("Graphics"), "Graphics"}, {tr("User"), "User"},
|
{tr("Graphics"), "Graphics"}, {tr("User"), "User"},
|
||||||
{tr("Input"), "Input"}, {tr("Paths"), "Paths"},
|
{tr("Input"), "Input"}, {tr("Paths"), "Paths"},
|
||||||
@ -647,7 +648,7 @@ void SettingsDialog::UpdateSettings() {
|
|||||||
const QVector<std::string> TouchPadIndex = {"left", "center", "right", "none"};
|
const QVector<std::string> TouchPadIndex = {"left", "center", "right", "none"};
|
||||||
Config::setBackButtonBehavior(TouchPadIndex[ui->backButtonBehaviorComboBox->currentIndex()]);
|
Config::setBackButtonBehavior(TouchPadIndex[ui->backButtonBehaviorComboBox->currentIndex()]);
|
||||||
Config::setIsFullscreen(ui->displayModeComboBox->currentText().toStdString() ==
|
Config::setIsFullscreen(ui->displayModeComboBox->currentText().toStdString() ==
|
||||||
"Borderless Windowed");
|
"Fullscreen (Borderless)");
|
||||||
Config::setFullscreenMode(
|
Config::setFullscreenMode(
|
||||||
screenModeMap.value(ui->displayModeComboBox->currentText()).toStdString());
|
screenModeMap.value(ui->displayModeComboBox->currentText()).toStdString());
|
||||||
Config::setIsMotionControlsEnabled(ui->motionControlsCheckBox->isChecked());
|
Config::setIsMotionControlsEnabled(ui->motionControlsCheckBox->isChecked());
|
||||||
|
@ -996,7 +996,7 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Borderless Windowed</string>
|
<string>Fullscreen (Borderless)</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
|
Loading…
Reference in New Issue
Block a user