Update src/app/3d/qgspoint3dsymbolwidget.cpp

Co-authored-by: Martin Dobias <wonder.sk@gmail.com>
This commit is contained in:
Nyall Dawson 2023-12-18 21:15:19 +10:00
parent 89d3377195
commit d871e87d6a

View File

@ -75,7 +75,7 @@ QgsPoint3DSymbolWidget::QgsPoint3DSymbolWidget( QWidget *parent )
connect( widgetMaterial, &QgsMaterialWidget::changed, this, &QgsPoint3DSymbolWidget::changed );
connect( btnChangeSymbol, static_cast<void ( QgsSymbolButton::* )( )>( &QgsSymbolButton::changed ), this, &QgsPoint3DSymbolWidget::changed );
// Sync between billboard height and TY
// Sync between billboard height and TZ
connect( spinBillboardHeight, static_cast<void ( QDoubleSpinBox::* )( double )>( &QDoubleSpinBox::valueChanged ), spinTZ, &QDoubleSpinBox::setValue );
connect( spinTZ, static_cast<void ( QDoubleSpinBox::* )( double )>( &QDoubleSpinBox::valueChanged ), spinBillboardHeight, &QDoubleSpinBox::setValue );
}