* Reset horscroll class when new session loads
This commit is contained in:
parent
02e86c5b5f
commit
b448a1ca9c
1 changed files with 7 additions and 6 deletions
|
|
@ -119,12 +119,9 @@ var VirtualRenderer = function(container, theme) {
|
|||
_self.scrollLeft = scrollLeft;
|
||||
_self.session.setScrollLeft(scrollLeft);
|
||||
|
||||
if (scrollLeft == 0) {
|
||||
_self.scroller.className = "ace_scroller";
|
||||
}
|
||||
else {
|
||||
_self.scroller.className = "ace_scroller horscroll";
|
||||
}
|
||||
_self.scroller.className = scrollLeft == 0
|
||||
? "ace_scroller"
|
||||
: "ace_scroller horscroll";
|
||||
});
|
||||
|
||||
this.cursorPos = {
|
||||
|
|
@ -191,12 +188,16 @@ var VirtualRenderer = function(container, theme) {
|
|||
|
||||
this.setSession = function(session) {
|
||||
this.session = session;
|
||||
|
||||
this.scroller.className = "ace_scroller";
|
||||
|
||||
this.$cursorLayer.setSession(session);
|
||||
this.$markerBack.setSession(session);
|
||||
this.$markerFront.setSession(session);
|
||||
this.$gutterLayer.setSession(session);
|
||||
this.$textLayer.setSession(session);
|
||||
this.$loop.schedule(this.CHANGE_FULL);
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue