![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | jonobugs |
I created an list with an ItemList container and I populate it with data that a user can type in.
I want to be able to copy the item and move it to a list so I decided to just copy the item when it’s selected by a left mouse click and then paste it when the user clicks an empty area in another list.
I originally wanted to drag and drop but I couldn’t find any tutorials on how to do that with text.
Anyway, I’m running into a problem with the signal not being activated. My solution works if I use item_rmb_selected but I would rather use a regular left click since I want to port this to an android.
I tried deleted the connection, try it again, tried it with a different container, but none seem to work in that I just use a print statement just see if the signal gets there. No errors, but it doesn’t work. Like I said, it works when I click on an empty spot and it work if I use the right mouse button.
In a different area, I was able to use this item_select function to bring focus to an input area so I’m perplexed as I can’t get it to work. The only difference is on the one that works, I have a menu system set up whereas in the second one the list is generated afterwards.
Any help would be greatly appreciated!