Merge pull request #3011 from DogeAmazed/issue-2933

Fixed issue #2933
This commit is contained in:
Jaex 2017-12-16 19:55:15 +03:00 committed by GitHub
commit 8464358215
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -331,7 +331,9 @@ private void MyPictureBox_MouseDown(object sender, MouseEventArgs e)
{
if (FullscreenOnClick && e.Button == MouseButtons.Left && IsValidImage)
{
pbMain.Enabled = false;
ImageViewer.ShowImage(Image);
pbMain.Enabled = true;
}
}