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 Jan 6, 2024
1 parent 6f7d385 commit 554e8fb
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 554e8fb

Please sign in to comment.