Skip to content

Commit

Permalink
[analyzer] Fix keyboard navigation for .msgNote events
Browse files Browse the repository at this point in the history
Does not go to msgNote's.

Differential Revision: https://reviews.llvm.org/D50595

llvm-svn: 339493
  • Loading branch information
George Karpenkov committed Aug 11, 2018
1 parent 69bf876 commit b3fff18
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
Expand Up @@ -997,7 +997,8 @@ var numToId = function(num) {
};
var navigateTo = function(up) {
var numItems = document.querySelectorAll(".line > .msg").length;
var numItems = document.querySelectorAll(
".line > .msgEvent, .line > .msgControl").length;
var currentSelected = findNum();
var newSelected = move(currentSelected, up, numItems);
var newEl = numToId(newSelected, numItems);
Expand Down

0 comments on commit b3fff18

Please sign in to comment.