summaryrefslogtreecommitdiffstats
path: root/win/C#/frmExceptionWindow.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-05-18 16:35:18 +0000
committersr55 <[email protected]>2010-05-18 16:35:18 +0000
commit318116fb6fe20e7f3f4e5f0631c66e9a960aa4ef (patch)
tree7f47952f008d090a861c1f1baa19e664b0ab9521 /win/C#/frmExceptionWindow.cs
parent9d86956c37eb3ae8bdb02275aac9e2db8cee187b (diff)
WinGui:
- Cleanup the exception window a bit. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3302 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmExceptionWindow.cs')
-rw-r--r--win/C#/frmExceptionWindow.cs16
1 files changed, 15 insertions, 1 deletions
diff --git a/win/C#/frmExceptionWindow.cs b/win/C#/frmExceptionWindow.cs
index 19d6f7ba1..407e03e33 100644
--- a/win/C#/frmExceptionWindow.cs
+++ b/win/C#/frmExceptionWindow.cs
@@ -51,6 +51,20 @@ namespace Handbrake
}
/// <summary>
+ /// Copy from the right click menu
+ /// </summary>
+ /// <param name="sender">
+ /// The sender.
+ /// </param>
+ /// <param name="e">
+ /// The e.
+ /// </param>
+ private void mnu_copy_log_Click(object sender, EventArgs e)
+ {
+ Clipboard.SetDataObject(rtf_exceptionFull.SelectedText != string.Empty ? rtf_exceptionFull.SelectedText : rtf_exceptionFull.Text, true);
+ }
+
+ /// <summary>
/// Close the window
/// </summary>
/// <param name="sender">
@@ -62,6 +76,6 @@ namespace Handbrake
private void btn_close_Click(object sender, EventArgs e)
{
this.Close();
- }
+ }
}
}