mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-27 20:31:02 +00:00
Add generic user-provided notes to save along with the capture.
* In future one of the notes items would be for gathered hardware info. Not automatically, but with one button press the full configuration can be embedded.
This commit is contained in:
@@ -1552,6 +1552,16 @@ void MainWindow::on_action_Errors_and_Warnings_triggered()
|
||||
ui->toolWindowManager->addToolWindow(debugMessages, mainToolArea());
|
||||
}
|
||||
|
||||
void MainWindow::on_action_Comments_triggered()
|
||||
{
|
||||
QWidget *comments = m_Ctx.GetCommentView()->Widget();
|
||||
|
||||
if(ui->toolWindowManager->toolWindows().contains(comments))
|
||||
ToolWindowManager::raiseToolWindow(comments);
|
||||
else
|
||||
ui->toolWindowManager->addToolWindow(comments, mainToolArea());
|
||||
}
|
||||
|
||||
void MainWindow::on_action_Statistics_Viewer_triggered()
|
||||
{
|
||||
QWidget *stats = m_Ctx.GetStatisticsViewer()->Widget();
|
||||
|
||||
Reference in New Issue
Block a user