Skip to content

Commit

Permalink
Minor bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
joern274 committed Jul 24, 2024
1 parent 63b62f1 commit c8c536e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions plugins/gui_extension_demo/python/python_bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ namespace hal
.value("ComboBox", PluginParameter::ComboBox, R"(Combo box to select string from semicolon separated input list.)")
.value("Dictionary", PluginParameter::Dictionary, R"(Key value pairs (string).)")
.value("ExistingDir", PluginParameter::ExistingDir, R"(Existing directory.)")
.value("ExistingFile",PluginParameter::ExistingFile,R"(Existing file.)")
.value("Float", PluginParameter::Float, R"(Floating point number.)")
.value("Gate", PluginParameter::Gate, R"(Gate ID.)")
.value("Integer", PluginParameter::Integer, R"(Integer number.)")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ namespace hal {

void LogicEvaluatorSelectGates::accept()
{
LogicEvaluatorDialog* led = new LogicEvaluatorDialog(mSelectGateModel->selectedGates(),mCompile->isChecked());
LogicEvaluatorDialog* led = new LogicEvaluatorDialog(mSelectGateModel->selectedGates(),!mCompile->isChecked());
led->show();
led->raise();
QDialog::accept();
Expand Down
1 change: 1 addition & 0 deletions plugins/logic_evaluator/src/logic_evaluator_truthtable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ namespace hal {
LogicEvaluatorTruthtable::LogicEvaluatorTruthtable(LogicEvaluatorTruthtableModel* model, QWidget* parent)
: mModel(model), mColumnDubbleClicked(-1)
{
setWindowTitle("Truth Table from Logic Evaluator");
QGridLayout* layout = new QGridLayout(this);
QMenuBar* menuBar = new QMenuBar(this);
QMenu* displForm = menuBar->addMenu("Format");
Expand Down

0 comments on commit c8c536e

Please sign in to comment.