GMGridView
GMGridView copied to clipboard
enableEditOnLongPress is opposite of expected action
In the latest version of GMGridView it seems that in order to disable editing on long press I have to set enableEditOnLongPress to true instead of false.
Before this worked: _gmGridView.enableEditOnLongPress = FALSE;
grid does not enter editing mode on a long press
Now to get the same result I had to change it to
_gmGridView.enableEditOnLongPress = TRUE;
to get the same results (no changes on long press).