mirror of
https://github.com/atom/atom.git
synced 2026-01-25 06:48:28 -05:00
Fix wrong variable name
This commit is contained in:
committed by
Antonio Scandurra
parent
251078da10
commit
90452836fe
@@ -1746,8 +1746,8 @@ function setScrollTop (component, scrollTop) {
|
||||
return component.getNextUpdatePromise()
|
||||
}
|
||||
|
||||
function setScrollLeft (component, scrollTop) {
|
||||
component.setScrollLeft(scrollTop)
|
||||
function setScrollLeft (component, scrollLeft) {
|
||||
component.setScrollLeft(scrollLeft)
|
||||
component.scheduleUpdate()
|
||||
return component.getNextUpdatePromise()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user