mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 09:59:59 +03:00
implemented ModEditUI and mapped ModEditUI Buttons for implementation
enabled EditMods button on MainWindowUI added validation check for renaming instances
This commit is contained in:
parent
eb16d977c8
commit
96cceeafeb
5 changed files with 54 additions and 6 deletions
|
|
@ -15,8 +15,11 @@
|
|||
|
||||
#include "modeditwindow.h"
|
||||
#include "ui_modeditwindow.h"
|
||||
#include "instance.h"
|
||||
|
||||
ModEditWindow::ModEditWindow(QWidget *parent) :
|
||||
#include <QDebug>
|
||||
|
||||
ModEditWindow::ModEditWindow(QWidget *parent, Instance* m_inst) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::ModEditWindow)
|
||||
{
|
||||
|
|
@ -27,3 +30,8 @@ ModEditWindow::~ModEditWindow()
|
|||
{
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void ModEditWindow::on_buttonBox_rejected()
|
||||
{
|
||||
close();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue