Fix export graph in contextmenu (#593)

It was only exporting the help text of ag
This commit is contained in:
fcasal 2018-07-24 08:01:34 +01:00 committed by xarkes
parent 1fa4a5c6bf
commit afd6c2fd67

View File

@ -733,7 +733,7 @@ void DisassemblerGraphView::on_actionExportGraph_triggered()
return;
}
QTextStream fileOut(&file);
fileOut << Core()->cmd("ag -");
fileOut << Core()->cmd("agfd $FB");
}
void DisassemblerGraphView::wheelEvent(QWheelEvent *event)