SIL.FieldWorks.XWorks.FwXWindow.OnIdle C# (CSharp) Method

OnIdle() public method

If a property requests it, do a db sync.
public OnIdle ( object sender ) : void
sender object
return void
		public virtual void OnIdle(object sender)
		{
			CheckDisposed();

			/* Bad things happen, when this is done and the parser is running.
			 * TODO: Figure out how they can co-exist.
			if (Mediator.PropertyTable.GetBoolProperty("SyncOnIdle", false) && FwApp.App != null
				&& FwApp.App.SyncGuid != Guid.Empty)
			{
				FwApp.App.SyncFromDb();
			}
			*/
		}
FwXWindow