Improved TreeListView copy/paste support.

- Fix sorting to respect visual ordering by ID, including parent.
- Provide Ctrl-A to 'Select All'. Note that there is an extant
bug with the redraw where renderdocui will not repaint when
it gets focus back.
This commit is contained in:
Michael Vance
2017-04-03 07:18:41 -07:00
committed by Baldur Karlsson
parent 3193595358
commit a74ddadd59
3 changed files with 59 additions and 17 deletions
@@ -364,6 +364,10 @@ namespace renderdocui.Controls
}
}
}
else if(e.KeyCode == Keys.A && e.Control)
{
variables.SelectAll();
}
}
private BufferFormatSpecifier m_FormatSpecifier = null;