From f5857bb1fda2b9aeed1cb3c3438c6b36d73c5db0 Mon Sep 17 00:00:00 2001 From: Kellermorph Date: Tue, 31 Mar 2026 20:15:35 +0200 Subject: [PATCH] Update comment for clarity in element properties editor --- sources/editor/ui/elementpropertieseditorwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/editor/ui/elementpropertieseditorwidget.cpp b/sources/editor/ui/elementpropertieseditorwidget.cpp index a4eba4e02..54bb447ba 100644 --- a/sources/editor/ui/elementpropertieseditorwidget.cpp +++ b/sources/editor/ui/elementpropertieseditorwidget.cpp @@ -240,7 +240,7 @@ void ElementPropertiesEditorWidget::on_m_buttonBox_accepted() else if (m_data.m_type == ElementData::Master) { m_data.m_master_type = ui->m_master_type_cb->currentData().value(); - // NEU: Wenn Häkchen gesetzt, speichere die Zahl, ansonsten -1 (unendlich) + //If the checkbox is checked, save the number; otherwise, -1 (infinity) if (ui->max_slaves_checkbox->isChecked()) { m_data.m_max_slaves = ui->max_slaves_spinbox->value(); } else {