mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-26 00:16:45 +00:00
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:
committed by
Baldur Karlsson
parent
3193595358
commit
a74ddadd59
@@ -364,6 +364,10 @@ namespace renderdocui.Controls
|
||||
}
|
||||
}
|
||||
}
|
||||
else if(e.KeyCode == Keys.A && e.Control)
|
||||
{
|
||||
variables.SelectAll();
|
||||
}
|
||||
}
|
||||
|
||||
private BufferFormatSpecifier m_FormatSpecifier = null;
|
||||
|
||||
Reference in New Issue
Block a user