Replies: 1 comment
-
Never mind, I change it to |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My table has 10 rows and 3 columns. I want to click cells in the second column to copy its content. But the copying applies to all rows,
I use
g.IsMouseClicked(g.MouseButtonLeft)
to determine if the cell is being clickedI tried
g.IsItemActive() && g.IsMouseClicked(g.MouseButtonLeft)
but it doesn't work, nothing printed.The code:
When clicking on any cell, it shows result:
What's the correct way to handle the cell clicking?
Beta Was this translation helpful? Give feedback.
All reactions