Skip to content

Commit

Permalink
Merge pull request #528 from ynput/bugfix/launcher-update-view-properly
Browse files Browse the repository at this point in the history
Launcher tool: Fix view update
  • Loading branch information
iLLiCiTiT authored May 21, 2024
2 parents 92fa97a + abb5cdc commit aa1ac97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/ayon_core/tools/launcher/ui/actions_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,8 @@ def _set_row_height(self, rows):
def _on_model_refresh(self):
self._proxy_model.sort(0)
# Force repaint all items
self._view.update()
viewport = self._view.viewport()
viewport.update()

def _on_animation(self):
time_now = time.time()
Expand Down

0 comments on commit aa1ac97

Please sign in to comment.