Skip to content

Commit

Permalink
Use graph index in addValue
Browse files Browse the repository at this point in the history
  • Loading branch information
Oen44 committed Dec 7, 2024
1 parent b9e3108 commit e2cf14c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ local drawGraph = function(graph, value)
graph:setLineWidth(1, 1)
graph:setLineColor(1, "#FF0000")
end
graph:addValue(value)
graph:addValue(1, value)
end

local toggleAnalyzer = function(window)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ local drawGraph = function(graph, value)
graph:setLineWidth(1, 1)
graph:setLineColor(1, "#FF0000")
end
graph:addValue(value)
graph:addValue(1, value)
end

local toggleAnalyzer = function(window)
Expand Down

0 comments on commit e2cf14c

Please sign in to comment.