diff options
author | sr55 <[email protected]> | 2007-11-13 19:38:28 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-11-13 19:38:28 +0000 |
commit | d2f6a79b08bdea9f87ee806d99f22b92cb8761a5 (patch) | |
tree | 05d77e858ea8ee1b5b0729c95bf0d5be9dab6078 /win/C#/frmDvdInfo.cs | |
parent | addd8819bde47cfa732e33333e989e41f9206a1d (diff) |
WinGui:
- Copy to clipboard button on the dvd information window.
- Show / hide presets button removed and replaced with an item in the presets menu.
- Re-enabled the update status text.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1057 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmDvdInfo.cs')
-rw-r--r-- | win/C#/frmDvdInfo.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/win/C#/frmDvdInfo.cs b/win/C#/frmDvdInfo.cs index 02338c11f..ee3a4e5c0 100644 --- a/win/C#/frmDvdInfo.cs +++ b/win/C#/frmDvdInfo.cs @@ -54,5 +54,11 @@ namespace Handbrake // Don't do anything
}
}
+
+ private void btn_copy_Click(object sender, EventArgs e)
+ {
+ if (rtf_dvdInfo.Text != "")
+ Clipboard.SetText(rtf_dvdInfo.Text, TextDataFormat.Text);
+ }
}
}
\ No newline at end of file |