mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-20 20:49:12 +12:00
Add volume curve setting (#658)
* Add volume curve setting * Qt: Add missing translations
This commit is contained in:
parent
545ac81d81
commit
5f822b32d5
7 changed files with 60 additions and 5 deletions
|
@ -69,7 +69,7 @@ void CheatEntryWidget::editClicked() {
|
|||
}
|
||||
|
||||
CheatEditDialog::CheatEditDialog(Emulator* emu, CheatEntryWidget& cheatEntry) : QDialog(), emu(emu), cheatEntry(cheatEntry) {
|
||||
setWindowTitle("Edit Cheat");
|
||||
setWindowTitle(tr("Edit Cheat"));
|
||||
|
||||
setAttribute(Qt::WA_DeleteOnClose);
|
||||
setModal(true);
|
||||
|
@ -161,7 +161,7 @@ void CheatEditDialog::rejected() {
|
|||
|
||||
CheatsWindow::CheatsWindow(Emulator* emu, const std::filesystem::path& cheatPath, QWidget* parent)
|
||||
: QWidget(parent, Qt::Window), emu(emu), cheatPath(cheatPath) {
|
||||
setWindowTitle("Cheats");
|
||||
setWindowTitle(tr("Cheats"));
|
||||
mainWindow = static_cast<MainWindow*>(parent);
|
||||
|
||||
QVBoxLayout* layout = new QVBoxLayout;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue