diff options
author | Carter Anderson <mcanders1@gmail.com> | 2017-05-27 04:17:05 -0500 |
---|---|---|
committer | Carter Anderson <mcanders1@gmail.com> | 2017-05-27 04:17:05 -0500 |
commit | 49c00bd19bba0c1278f0e09c4c326e0f449e5bf9 (patch) | |
tree | 0b7456b0501b6589fdc5b09063dfc03593506d8e | |
parent | f89641907f8b45941f5e67891936ee8050a3ef92 (diff) |
Fix incorrect input event reference in editor_profiler.cpp
-rw-r--r-- | editor/editor_profiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_profiler.cpp b/editor/editor_profiler.cpp index d427126734..5aad903485 100644 --- a/editor/editor_profiler.cpp +++ b/editor/editor_profiler.cpp @@ -523,7 +523,7 @@ void EditorProfiler::_graph_tex_input(const Ref<InputEvent> &p_ev) { hover_metric = -1; } - if (mb.is_valid() || mb->get_button_mask() & BUTTON_MASK_LEFT) { + if (mb.is_valid() || mm->get_button_mask() & BUTTON_MASK_LEFT) { //cursor_metric=x; updating_frame = true; |