Skip to content

Commit 97f17c7

Browse files
committed
Merge branch 'master' into fix-transparency
2 parents 230d6cf + 1cebadb commit 97f17c7

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

src/Interface/Application/NoteEditor.cc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ NoteEditor::NoteEditor(const QString& moduleName, bool positionAdjustable, QWidg
5555
connect(buttonBox_->button(QDialogButtonBox::Ok), SIGNAL(clicked()), this, SLOT(ok()));
5656
connect(buttonBox_->button(QDialogButtonBox::Cancel), SIGNAL(clicked()), this, SLOT(cancel()));
5757

58+
label_2->setHidden(true);
59+
alignmentComboBox_->setHidden(true);
60+
5861
//TODO: settable notes
5962
previousColor_ = Qt::black;
6063
position_ = Default;
@@ -162,4 +165,4 @@ void NoteEditor::showEvent(QShowEvent* event)
162165
noteHtmlBackup_ = textEdit_->toHtml();
163166
fontSizeBackup_ = fontSizeComboBox_->currentIndex();
164167
QDialog::showEvent(event);
165-
}
168+
}

src/Modules/Legacy/Visualization/GenerateStreamLines.cc

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,6 @@ void GenerateStreamLines::execute()
8080
setAlgoBoolFromState(Parameters::RemoveColinearPoints);
8181
setAlgoBoolFromState(Parameters::AutoParameters);
8282
setAlgoOptionFromState(Parameters::StreamlineMethod);
83-
/*
84-
int method = gui_method_.get();
85-
if (method == 0) algo_.set_option("method","AdamsBashforth");
86-
else if (method == 2) algo_.set_option("method","Heun");
87-
else if (method == 3) algo_.set_option("method","RungeKutta");
88-
else if (method == 4) algo_.set_option("method","RungeKuttaFehlberg");
89-
else if (method == 5) algo_.set_option("method","CellWalk");
90-
*/
9183

9284
auto output = algo().run_generic(withInputData((Vector_Field, input)(Seed_Points, seeds)));
9385

0 commit comments

Comments
 (0)