Commit 127a152f authored by Roman Donchenko's avatar Roman Donchenko

Merge pull request #890 from caorong:patch-1

parents 27bff3c1 a2adafd5
...@@ -215,9 +215,9 @@ public class FdActivity extends Activity implements CvCameraViewListener2 { ...@@ -215,9 +215,9 @@ public class FdActivity extends Activity implements CvCameraViewListener2 {
else if (item == mItemFace20) else if (item == mItemFace20)
setMinFaceSize(0.2f); setMinFaceSize(0.2f);
else if (item == mItemType) { else if (item == mItemType) {
mDetectorType = (mDetectorType + 1) % mDetectorName.length; int tmpDetectorType = (mDetectorType + 1) % mDetectorName.length;
item.setTitle(mDetectorName[mDetectorType]); item.setTitle(mDetectorName[tmpDetectorType]);
setDetectorType(mDetectorType); setDetectorType(tmpDetectorType);
} }
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment