Skip to content

Commit

Permalink
Refs #7162. Turn off LOD by default for SplatterPlot view.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Reuter committed May 21, 2013
1 parent 9d34d73 commit 517845a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,8 @@ void MdViewerWidget::updateAppState()
this->viewSettings->updateEnableState();

ThreeSliceView *tsv = dynamic_cast<ThreeSliceView *>(this->currentView);
if (tsv)
SplatterPlotView *spv = dynamic_cast<SplatterPlotView *>(this->currentView);
if (NULL != tsv || NULL != spv)
{
this->currentView->onLodThresholdChange(false, this->lodThreshold);
this->lodAction->setChecked(false);
Expand Down

0 comments on commit 517845a

Please sign in to comment.