From 30dc4a6caca903e569eb7b2630a2eb0eef163928 Mon Sep 17 00:00:00 2001 From: Riley Hawksworth <114335081+BlurrySquire@users.noreply.github.com> Date: Sat, 13 Apr 2024 19:57:19 +0100 Subject: [PATCH] Update QT frontend window title to 'Panda3DS'. --- src/panda_qt/main_window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/panda_qt/main_window.cpp b/src/panda_qt/main_window.cpp index a4fc20f0..1de97fe7 100644 --- a/src/panda_qt/main_window.cpp +++ b/src/panda_qt/main_window.cpp @@ -11,7 +11,7 @@ #include "input_mappings.hpp" MainWindow::MainWindow(QApplication* app, QWidget* parent) : QMainWindow(parent), keyboardMappings(InputMappings::defaultKeyboardMappings()), screen(this) { - setWindowTitle("Alber"); + setWindowTitle("Panda3DS"); // Enable drop events for loading ROMs setAcceptDrops(true); resize(800, 240 * 4); @@ -510,4 +510,4 @@ void MainWindow::pollControllers() { } } } -} \ No newline at end of file +}