Skip to content

Commit

Permalink
Fix io.va checkbox
Browse files Browse the repository at this point in the history
The value of the checkbox was never used.
  • Loading branch information
thestr4ng3r committed Jun 4, 2024
1 parent 38c683b commit 84c25a6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/dialogs/InitialOptionsDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ void InitialOptionsDialog::setupAndStartAnalysis()
options.os = getSelectedOS();
options.writeEnabled = ui->writeCheckBox->isChecked();
options.loadBinInfo = !ui->binCheckBox->isChecked();
options.useVA = ui->vaCheckBox->isChecked();
QVariant forceBinPluginData = ui->formatComboBox->currentData();
if (!forceBinPluginData.isNull()) {
RzBinPluginDescription pluginDesc = forceBinPluginData.value<RzBinPluginDescription>();
Expand Down

0 comments on commit 84c25a6

Please sign in to comment.