File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -1020,6 +1020,6 @@ $(window).ready(function() {
10201020 wvar . zoom = true ;
10211021
10221022 if ( text === "" ) { wvar . mode = null ; }
1023- clean_refresh ( wvar . mode , true ) ;
1023+ clean_refresh ( wvar . mode , true , true ) ;
10241024 } ) ;
10251025} ) ;
Original file line number Diff line number Diff line change @@ -324,8 +324,9 @@ function throttle_events(event) {
324324}
325325
326326
327- function clean_refresh ( text , force ) {
327+ function clean_refresh ( text , force , history_step ) {
328328 force = ! ! force ;
329+ history_step = ! ! history_step ;
329330
330331 if ( text == wvar . mode && ! force ) return false ;
331332 if ( ajax_inprogress ) return false ;
@@ -366,7 +367,7 @@ function clean_refresh(text, force) {
366367 ) ;
367368 listScroll . refresh ( ) ;
368369
369- lhash_update ( ) ;
370+ lhash_update ( history_step ) ;
370371 refresh ( ) ;
371372 refreshPredictions ( ) ;
372373
You can’t perform that action at this time.
0 commit comments