Horizon

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 7  →  ?path2? @ 8
/Horizon/Snapshots/SnapshotNoteForm.cs
@@ -23,7 +23,6 @@
public SnapshotNoteForm()
{
InitializeComponent();
Utilities.WindowState.FormTracker.Track(this);
}
 
public SnapshotNoteForm(SnapshotManagerForm snapshotManagerForm, SnapshotPreview snapshotPreview) : this()
@@ -53,7 +52,10 @@
#endregion
 
#region Event Handlers
 
private void SnapshotNoteForm_Load(object sender, EventArgs e)
{
Utilities.WindowState.FormTracker.Track(this);
}
private void SnapshotManagerForm_PreviewRetrieved(object sender, PreviewRetrievedEventArgs e)
{
richTextBox1.InvokeIfRequired(richTextBox => { richTextBox.Text = e.SnapshotPreview.Note; });
@@ -73,5 +75,7 @@
}
 
#endregion
 
 
}
}