iOS: correctly refresh screen after resize

This commit is contained in:
Martin Fleisz 2013-03-05 17:08:53 +01:00
parent 28f69ac0a3
commit 7e7c096327

View File

@ -375,7 +375,10 @@
- (void)sessionBitmapContextDidChange:(RDPSession*)session
{
// associate view with session
[_session_view setSession:session];
[_session_view setSession:session];
// issue an update (this might be needed in case we had a resize for instance)
[_session_view setNeedsDisplay];
}
- (void)session:(RDPSession*)session needsRedrawInRect:(CGRect)rect