From e2371eb1e61282400ad79f9031ee728c4dfd6ef3 Mon Sep 17 00:00:00 2001 From: GriffinR Date: Sun, 4 May 2025 16:34:43 -0400 Subject: [PATCH] Remove redundant text change for tileset combo boxes --- src/mainwindow.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 322d6e83..16b24f1e 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1192,11 +1192,6 @@ void MainWindow::displayMapProperties() { ui->frame_HeaderData->setEnabled(true); this->mapHeaderForm->setHeader(editor->map->header()); - const QSignalBlocker b_PrimaryTileset(ui->comboBox_PrimaryTileset); - const QSignalBlocker b_SecondaryTileset(ui->comboBox_SecondaryTileset); - ui->comboBox_PrimaryTileset->setTextItem(editor->map->layout()->tileset_primary_label); - ui->comboBox_SecondaryTileset->setTextItem(editor->map->layout()->tileset_secondary_label); - ui->mapCustomAttributesFrame->table()->setAttributes(editor->map->customAttributes()); }