Copy handler for texture viewer that copies status text. Refs #92

This commit is contained in:
baldurk
2014-10-07 00:10:40 +01:00
parent cfbdc98212
commit 50626337da
+5
View File
@@ -1972,6 +1972,11 @@ namespace renderdocui.Windows
FetchTexture tex = CurrentTexture;
if (tex == null) return;
if (e.KeyCode == Keys.C && e.Control)
{
Clipboard.SetText(texStatusDim.Text + " | " + statusLabel.Text);
}
if (e.KeyCode == Keys.Up && m_PickedPoint.Y > 0)
{