mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
Merge pull request #2358 from jlitewski/opbuffer
Disable Rendering the Operation Buffer
This commit is contained in:
commit
fc584b348a
1 changed files with 2 additions and 2 deletions
|
@ -1013,7 +1013,7 @@ void Plot::paintEvent(QPaintEvent *event) {
|
||||||
|
|
||||||
//init graph variables
|
//init graph variables
|
||||||
setMaxAndStart(g_GraphBuffer, g_GraphTraceLen, plotRect);
|
setMaxAndStart(g_GraphBuffer, g_GraphTraceLen, plotRect);
|
||||||
appendMax(g_OperationBuffer, g_GraphTraceLen, plotRect);
|
//appendMax(g_OperationBuffer, g_GraphTraceLen, plotRect);
|
||||||
|
|
||||||
// center line
|
// center line
|
||||||
int zeroHeight = plotRect.top() + (plotRect.bottom() - plotRect.top()) / 2;
|
int zeroHeight = plotRect.top() + (plotRect.bottom() - plotRect.top()) / 2;
|
||||||
|
@ -1029,7 +1029,7 @@ void Plot::paintEvent(QPaintEvent *event) {
|
||||||
}
|
}
|
||||||
|
|
||||||
//Plot the Operation Overlay
|
//Plot the Operation Overlay
|
||||||
plotOperations(g_OperationBuffer, g_GraphTraceLen, &painter, plotRect);
|
//plotOperations(g_OperationBuffer, g_GraphTraceLen, &painter, plotRect);
|
||||||
|
|
||||||
//Plot the Overlay
|
//Plot the Overlay
|
||||||
if (g_useOverlays) {
|
if (g_useOverlays) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue