Skip to content

Commit 7f5c1ca

Browse files
authored
Update ext-scrollbar.js
1 parent dfc396f commit 7f5c1ca

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docs/mrs/Ace_color/ext-scrollbar.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,10 @@ classname = function (classname) {
8080
})
8181

8282

83-
83+
// error warning change
84+
e.getSession().on("changeAnnotation", function() {
85+
resizeScroll(); // redraw vertical scrollbar on error changes
86+
});
8487

8588

8689

@@ -115,13 +118,13 @@ classname = function (classname) {
115118
}
116119
}
117120
}
118-
let nr_lines_vissible = editor.renderer.getLastVisibleRow() - editor.renderer.getFirstVisibleRow();
121+
let nr_lines_vissible = e.renderer.getLastVisibleRow() - e.renderer.getFirstVisibleRow();
119122
var alarm="";
120123
//get warnings errors?
121124
//console.log("editor.getSession().getAnnotations()",editor.getSession().getAnnotations());
122125
//console.log("editor.getSession().getAnnotations().length",editor.getSession().getAnnotations().length);
123126
for (let i = 0; i < e.getSession().getAnnotations().length; i=i+1) {
124-
if(editor.getSession().getAnnotations()[i].type=="info"){
127+
if(e.getSession().getAnnotations()[i].type=="info"){
125128
alarm += "<div class='ace_map-item' style='top:" + (map_range(e.getSession().getAnnotations()[i].row ,0,editor.session.getLength()+nr_lines_vissible, 0,100)) + "%;background-color:pink;'></div>"
126129
}
127130
else if(editor.getSession().getAnnotations()[i].type=="error"){

0 commit comments

Comments
 (0)