Qt: Minor typo corrections

This commit is contained in:
Stenzek 2024-04-01 17:45:24 +10:00
parent 74f3c8d1aa
commit a89c514d3f
No known key found for this signature in database
4 changed files with 7 additions and 4 deletions

View file

@ -1,7 +1,8 @@
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com> // SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin <stenzek@gmail.com>
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0) // SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
#include "coverdownloaddialog.h" #include "coverdownloaddialog.h"
#include "qthost.h"
#include "core/game_list.h" #include "core/game_list.h"
@ -10,6 +11,7 @@
CoverDownloadDialog::CoverDownloadDialog(QWidget* parent /*= nullptr*/) : QDialog(parent) CoverDownloadDialog::CoverDownloadDialog(QWidget* parent /*= nullptr*/) : QDialog(parent)
{ {
m_ui.setupUi(this); m_ui.setupUi(this);
setWindowIcon(QtHost::GetAppIcon());
m_ui.coverIcon->setPixmap(QIcon::fromTheme("artboard-2-line").pixmap(32)); m_ui.coverIcon->setPixmap(QIcon::fromTheme("artboard-2-line").pixmap(32));
updateEnabled(); updateEnabled();

View file

@ -420,6 +420,8 @@ void DebuggerWindow::closeEvent(QCloseEvent* event)
void DebuggerWindow::setupAdditionalUi() void DebuggerWindow::setupAdditionalUi()
{ {
setWindowIcon(QtHost::GetAppIcon());
#ifdef _WIN32 #ifdef _WIN32
QFont fixedFont; QFont fixedFont;
fixedFont.setFamily(QStringLiteral("Consolas")); fixedFont.setFamily(QStringLiteral("Consolas"));

View file

@ -346,7 +346,7 @@ GraphicsSettingsWidget::GraphicsSettingsWidget(SettingsWindow* dialog, QWidget*
"This can measurably improve performance in the Vulkan renderer.")); "This can measurably improve performance in the Vulkan renderer."));
dialog->registerWidgetHelp( dialog->registerWidgetHelp(
m_ui.stretchDisplayVertically, tr("Stretch Vertically"), tr("Unchecked"), m_ui.stretchDisplayVertically, tr("Stretch Vertically"), tr("Unchecked"),
tr("Prefers stretching the display vertically instead of horizontally, wheen applying the display aspect ratio.")); tr("Prefers stretching the display vertically instead of horizontally, when applying the display aspect ratio."));
#ifdef _WIN32 #ifdef _WIN32
dialog->registerWidgetHelp(m_ui.blitSwapChain, tr("Use Blit Swap Chain"), tr("Unchecked"), dialog->registerWidgetHelp(m_ui.blitSwapChain, tr("Use Blit Swap Chain"), tr("Unchecked"),
tr("Uses a blit presentation model instead of flipping when using the Direct3D 11 " tr("Uses a blit presentation model instead of flipping when using the Direct3D 11 "
@ -453,7 +453,7 @@ GraphicsSettingsWidget::GraphicsSettingsWidget(SettingsWindow* dialog, QWidget*
m_ui.screenshotFormat, tr("Screenshot Format"), tr("PNG"), m_ui.screenshotFormat, tr("Screenshot Format"), tr("PNG"),
tr("Selects the format which will be used to save screenshots. JPEG produces smaller files, but loses detail.")); tr("Selects the format which will be used to save screenshots. JPEG produces smaller files, but loses detail."));
dialog->registerWidgetHelp(m_ui.screenshotQuality, tr("Screenshot Quality"), dialog->registerWidgetHelp(m_ui.screenshotQuality, tr("Screenshot Quality"),
QStringLiteral("%1%%").arg(Settings::DEFAULT_DISPLAY_SCREENSHOT_QUALITY), QStringLiteral("%1%").arg(Settings::DEFAULT_DISPLAY_SCREENSHOT_QUALITY),
tr("Selects the quality at which screenshots will be compressed. Higher values preserve " tr("Selects the quality at which screenshots will be compressed. Higher values preserve "
"more detail for JPEG, and reduce file size for PNG.")); "more detail for JPEG, and reduce file size for PNG."));

View file

@ -2957,7 +2957,6 @@ void MainWindow::openCPUDebugger()
Assert(!m_debugger_window); Assert(!m_debugger_window);
m_debugger_window = new DebuggerWindow(); m_debugger_window = new DebuggerWindow();
m_debugger_window->setWindowIcon(windowIcon());
connect(m_debugger_window, &DebuggerWindow::closed, this, &MainWindow::onCPUDebuggerClosed); connect(m_debugger_window, &DebuggerWindow::closed, this, &MainWindow::onCPUDebuggerClosed);
m_debugger_window->show(); m_debugger_window->show();
} }