Skip to content

Commit 200e27c

Browse files
committed
Issue askerov#27: making DynamicGridView.mDragListener optional for immediate cell dragging.
1 parent 285031f commit 200e27c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dynamicgrid/src/org/askerov/dynamicgrid/DynamicGridView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public void startEditMode(int position) {
131131
requestDisallowInterceptTouchEvent(true);
132132
if (isPostHoneycomb() && mWobbleInEditMode)
133133
startWobbleAnimation();
134-
if (position != -1 && mDragListener != null) {
134+
if (position != -1) {
135135
startDragAtPosition(position);
136136
}
137137
mIsEditMode = true;

0 commit comments

Comments
 (0)