Skip to content

Commit

Permalink
room importer determines the background images path from the project …
Browse files Browse the repository at this point in the history
…directory set in preferences
  • Loading branch information
MightyPrinny committed Jun 11, 2023
1 parent e68bc59 commit 2d65972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/gmx/roomimporterdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ ImporterSettings RoomImporterDialog::getSettings()
void RoomImporterDialog::setDefaultPaths(QSettings *appSettings)
{
QVariant val = appSettings->value("Interface/GMProjectFilePath");
QSize tileSize = appSettings->value(QStringLiteral("GMSMESizes/lastUsedMapTilesize"), QSize(16,16)).toSize();
QSize tileSize = appSettings->value(QStringLiteral("GMSMESizes/lastUsedMapTilesize"), QSize(16,16)).toSize();
mUi->tileWidth->setValue(tileSize.width());
mUi->tileHeight->setValue(tileSize.height());
QSize quadSize = appSettings->value(QStringLiteral("GMSMESizes/LastUsedQuadSize"), QSize(256,224)).toSize();
Expand Down

0 comments on commit 2d65972

Please sign in to comment.