Skip to content

Commit

Permalink
JPC tab: Fix context menu not working
Browse files Browse the repository at this point in the history
  • Loading branch information
LagoLunatic committed Nov 10, 2023
1 parent 91e6773 commit 23eed79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcft_ui/jpc_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def show_jpc_particles_tree_context_menu(self, pos):
index = self.ui.jpc_particles_tree.indexAt(pos)
if not index.isValid():
return
item = self.item_model.itemFromIndex(index)
item = self.item_model.itemFromIndex(self.proxy_model.mapToSource(index))
if item is None:
return

Expand Down

0 comments on commit 23eed79

Please sign in to comment.