Microsoft Windows Phone 8.1 support ends (13 Jul 2017)

Microsoft has ended support for Windows Phone 8.1

Here you should submit your bug reports with logcat.

annotation.SetLocked(true); not worked well

More
9 years 9 months ago #11541 by mrawy
annotation.SetLocked(true)
not worked well with the Ink ??? please advices.
you can't move the rect but you move the ink in the rect.
More
9 years 9 months ago #11542 by mrawy
annotation.SetLocked(true)
not worked well with the Ink ??? please advices.
you can't move the rect but you move the ink in the rect.
More
9 years 9 months ago - 9 years 9 months ago #11547 by nermeen
Replied by nermeen on topic annotation.SetLocked(true);
You can fix this by modifiying PDFLayoutView.onTouchAnnot as follows:
Code:
case MotionEvent.ACTION_MOVE: if( m_annot_rect0 != null ) ... case MotionEvent.ACTION_UP: case MotionEvent.ACTION_CANCEL: if( m_annot_rect0 != null ) ....
To:
Code:
case MotionEvent.ACTION_MOVE: if( m_annot_rect0 != null && !m_annot.IsLocked()) ... case MotionEvent.ACTION_UP: case MotionEvent.ACTION_CANCEL: if( m_annot_rect0 != null && !m_annot.IsLocked()) ....
Note: this will be included in the next versions
Last edit: 9 years 9 months ago by nermeen.
Time to create page: 0.402 seconds
Powered by Kunena Forum