Skip to content

Commit

Permalink
Fix rows being hidden when they shouldn't be
Browse files Browse the repository at this point in the history
  • Loading branch information
raccog committed Dec 28, 2023
1 parent 7cee0d7 commit 464a8bf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/sliderulestab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ void SliderulesTab::isaSelectorChanged() {
return;
}

// Set all rows to visible
for (int i = 0; i < ui->encodingTable->model->rowCount(QModelIndex()); ++i) {
ui->encodingTable->setRowHidden(i, false);
}

// Check if base extension should be hidden and get selected extensions
bool hideBaseExt = false;
if (isa->supportsExtension(mainExt)) {
Expand Down

0 comments on commit 464a8bf

Please sign in to comment.