Small documentation addition and remove check

Added some documentation for a variable and removed an unnecessary
conditional.
This commit is contained in:
yankejustin 2015-07-28 14:52:07 -04:00
parent 2d2a66b3d1
commit cb01565b15
2 changed files with 5 additions and 1 deletions

View File

@ -38,6 +38,10 @@ namespace xServer.Controls
{
#region IRapidPictureBox Implementation
/// <summary>
/// True if the PictureBox should be currently streaming images; False if the
/// PictureBox should not be currently streaming images.
/// </summary>
public bool Running { get; set; }
public void Start()

View File

@ -90,7 +90,7 @@ namespace xServer.Forms
this.Invoke((MethodInvoker)delegate
{
if (picDesktop != null && !picDesktop.IsDisposed && picDesktop._Image != null)
if (picDesktop != null && !picDesktop.IsDisposed)
{
picDesktop.Invalidate();
}