Skip to content

Commit

Permalink
Adding background exporter (to png)
Browse files Browse the repository at this point in the history
  • Loading branch information
myst6re committed May 26, 2022
1 parent 16c1ec9 commit 68e6f55
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,6 @@
#include "ScriptExporter.h"
#include "EncounterExporter.h"
#include "BackgroundExporter.h"
#include "widgets/MsdWidget.h"
#include "widgets/JsmWidget.h"
#include "widgets/CharaWidget.h"
#include "widgets/WalkmeshWidget.h"
#include "widgets/BackgroundWidget.h"
#include "widgets/EncounterWidget.h"
#include "widgets/TdwWidget.h"
#include "widgets/SoundWidget.h"
#include "widgets/MiscWidget.h"
#include "widgets/AboutDialog.h"

MainWindow::MainWindow()
: fieldArchive(nullptr), field(nullptr), currentField(nullptr),
Expand Down Expand Up @@ -729,7 +719,7 @@ void MainWindow::exportCurrent()
QString selectedFilter;
path = QFileDialog::getSaveFileName(this, tr("Exporter"), path, filter.join(";;"), &selectedFilter);
if(path.isNull()) return;

int type = typeList.at(filter.indexOf(selectedFilter));

switch(type) {
Expand Down

0 comments on commit 68e6f55

Please sign in to comment.