Skip to content
Snippets Groups Projects
Commit f0115a37 authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

do not swallow InterruptedException in MultiResolutionRenderer.paint()

parent ded46615
No related branches found
No related tags found
No related merge requests found
...@@ -550,7 +550,10 @@ public class MultiResolutionRenderer ...@@ -550,7 +550,10 @@ public class MultiResolutionRenderer
Thread.sleep( 1 ); Thread.sleep( 1 );
} }
catch ( final InterruptedException e ) catch ( final InterruptedException e )
{} {
// restore interrupted state
Thread.currentThread().interrupt();
}
requestRepaint( currentScreenScaleIndex ); requestRepaint( currentScreenScaleIndex );
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment