Skip to content

Commit cb6e74b

Browse files
author
Brig Bagley
committed
removed redundant dialog code
1 parent 218c351 commit cb6e74b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Interface/Modules/Visualization/CreateBasicColorMapDialog.cc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,9 @@ void CreateBasicColorMapDialog::pull()
7171
std::string cm_name(state_->getValue(CreateBasicColorMapModule::ColorMapName).toString());
7272
double cm_shift(state_->getValue(CreateBasicColorMapModule::ColorMapShift).toDouble());
7373
int cm_res(state_->getValue(CreateBasicColorMapModule::ColorMapResolution).toInt());
74-
bool cm_inv(state_->getValue(CreateBasicColorMapModule::ColorMapInvert).toBool());
7574
colorMapNameComboBox_->setCurrentIndex(colorMapNameComboBox_->findText(QString::fromStdString(cm_name)));
76-
shiftSpin_->setValue(cm_shift);
7775
shiftSlider_->setValue(static_cast<int>(cm_shift * 100.));
7876
resolutionSlider_->setValue(cm_res);
79-
resolutionSpin_->setValue(cm_res);
80-
invertCheck_->setChecked(cm_inv);
8177
}
8278

8379
void CreateBasicColorMapDialog::updateColorMapPreview(QString s) {

0 commit comments

Comments
 (0)