Skip to content

Commit

Permalink
fix checks round 6
Browse files Browse the repository at this point in the history
  • Loading branch information
NEDJIMAbelgacem committed Nov 14, 2020
1 parent 6a943c8 commit 1d8fda9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/3d/symbols/qgspointcloud3dsymbol.h
Expand Up @@ -96,7 +96,7 @@ class QgsPointCloud3DSymbol : public QgsAbstract3DSymbol

private:
bool mEnabled = true;
float mPointSize = 10.0f;
float mPointSize = 2.0f;
};

#endif // QGSPOINTCLOUD3DSYMBOL_H
2 changes: 1 addition & 1 deletion src/app/3d/qgspointcloud3dsymbolwidget.cpp
Expand Up @@ -45,7 +45,7 @@ QgsPointCloud3DSymbolWidget::QgsPointCloud3DSymbolWidget( QgsPointCloudLayer *la
connect( mPointSizeSpinBox, qgis::overload<double>::of( &QDoubleSpinBox::valueChanged ), this, &QgsPointCloud3DSymbolWidget::changed );
}

void QgsPointCloud3DSymbolWidget::setLayer( QgsPointCloudLayer *layer, bool updateSymbol )
void QgsPointCloud3DSymbolWidget::setLayer( QgsPointCloudLayer *layer )
{
mLayer = layer;
if ( layer )
Expand Down
2 changes: 1 addition & 1 deletion src/app/3d/qgspointcloud3dsymbolwidget.h
Expand Up @@ -28,7 +28,7 @@ class QgsPointCloud3DSymbolWidget : public QWidget, private Ui::QgsPointCloud3DS
public:
explicit QgsPointCloud3DSymbolWidget( QgsPointCloudLayer *layer, QWidget *parent = nullptr );

void setLayer( QgsPointCloudLayer *meshLayer, bool updateSymbol = true );
void setLayer( QgsPointCloudLayer *pointCloudLayer );

QgsPointCloudLayer *pointCloudLayer() const { return mLayer; }
void setSymbol( QgsPointCloud3DSymbol *symbol );
Expand Down

0 comments on commit 1d8fda9

Please sign in to comment.