Skip to content

Commit

Permalink
Qt: Add title to ROM patcher
Browse files Browse the repository at this point in the history
  • Loading branch information
wheremyfoodat authored Dec 1, 2024
1 parent 1e54614 commit d8df0dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/panda_qt/patch_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
#include "io_file.hpp"

PatchWindow::PatchWindow(QWidget* parent) : QWidget(parent, Qt::Window) {
setWindowTitle("ROM patcher");

QVBoxLayout* layout = new QVBoxLayout;
layout->setContentsMargins(6, 6, 6, 6);
setLayout(layout);
Expand Down Expand Up @@ -155,4 +157,4 @@ void PatchWindow::PatchWindow::displayMessage(const QString& title, const QStrin
}

messageBox.exec();
}
}

0 comments on commit d8df0dc

Please sign in to comment.