Skip to content

Commit

Permalink
#5231: Fix Patch Inspector row/col selectors not properly repopulated…
Browse files Browse the repository at this point in the history
… after patch dimension change (transpose)
  • Loading branch information
codereader committed Jun 28, 2020
1 parent 7782291 commit fefecff
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions radiant/ui/patch/PatchInspector.cpp
Expand Up @@ -213,6 +213,9 @@ void PatchInspector::update()
patch->getPatch().getHeight() != _patchRows)
{
// Patch matrix got changed
_patchRows = patch->getPatch().getHeight();
_patchCols = patch->getPatch().getWidth();

clearVertexChooser();
repopulateVertexChooser();
}
Expand Down

0 comments on commit fefecff

Please sign in to comment.