gmoledina / GMGridView

A performant Grid-View for iOS (iPhone/iPad) that allows sorting of views with gestures (the user can move the items with his finger to sort them) and pinching/rotating/panning gestures allow the user to play with the view and toggle from the cellview to a fullsize display.
MIT License
2.3k stars 512 forks source link

enableEditOnLongPress is opposite of expected action #180

Open JesseARWhite opened 11 years ago

JesseARWhite commented 11 years ago

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).