Skip to content

Commit

Permalink
fix: Fixed GUI output for SDF module (#1880)
Browse files Browse the repository at this point in the history
  • Loading branch information
Danbr4d authored and trisyoungs committed Apr 23, 2024
1 parent 8064a8e commit 9aedf78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/sdf/gui/sdfWidgetFuncs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ void SDFModuleWidget::updateControls(const Flags<ModuleWidget::UpdateFlags> &upd
// Create SDF renderable if it doesn't already exist
if (!sdfRenderable_)
{
sdfRenderable_ = sdfGraph_->createRenderable<RenderableData3D>(fmt::format("{}//Process3D//SDF", module_->name()),
fmt::format("SDF"));
sdfRenderable_ =
sdfGraph_->createRenderable<RenderableData3D>(fmt::format("{}//SDF", module_->name()), fmt::format("SDF"));
sdfRenderable_->setColour(StockColours::BlueStockColour);
auto *cfg = module_->keywords().getConfiguration("Configuration");
if (cfg)
Expand Down

0 comments on commit 9aedf78

Please sign in to comment.