Skip to content

Commit

Permalink
use QgsPointCloudAttributeProxyModel::AllTypes instead of Numeric bec…
Browse files Browse the repository at this point in the history
…ause Char is also numeric
  • Loading branch information
NEDJIMAbelgacem authored and nyalldawson committed Jan 17, 2021
1 parent 1b19b7b commit 41ffc4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/3d/qgspointcloud3dsymbolwidget.cpp
Expand Up @@ -40,7 +40,7 @@ QgsPointCloud3DSymbolWidget::QgsPointCloud3DSymbolWidget( QgsPointCloudLayer *la
mColorRampShaderMaxEdit->setShowClearButton( false );

mRenderingParameterComboBox->setLayer( layer );
mRenderingParameterComboBox->setFilters( QgsPointCloudAttributeProxyModel::Numeric );
mRenderingParameterComboBox->setFilters( QgsPointCloudAttributeProxyModel::AllTypes );
mRenderingParameterComboBox->setAllowEmptyAttributeName( false );

mSingleColorBtn->setAllowOpacity( false );
Expand Down
Expand Up @@ -31,7 +31,7 @@ QgsPointCloudAttributeByRampRendererWidget::QgsPointCloudAttributeByRampRenderer
setupUi( this );

mAttributeComboBox->setAllowEmptyAttributeName( false );
mAttributeComboBox->setFilters( QgsPointCloudAttributeProxyModel::Numeric );
mAttributeComboBox->setFilters( QgsPointCloudAttributeProxyModel::AllTypes );

mMinSpin->setShowClearButton( false );
mMaxSpin->setShowClearButton( false );
Expand Down

0 comments on commit 41ffc4c

Please sign in to comment.