Skip to content
Snippets Groups Projects
Commit 9350140f authored by nightfox's avatar nightfox
Browse files

Minor improvement in ANSI message scrollbar behavior for PageUp/PageDown/Home/End

parent 23ef23cd
No related branches found
No related tags found
No related merge requests found
...@@ -166,7 +166,7 @@ if (system.version_num < 31500) ...@@ -166,7 +166,7 @@ if (system.version_num < 31500)
} }
   
// Reader version information // Reader version information
var READER_VERSION = "1.05 Beta 5"; var READER_VERSION = "1.05 Beta 6";
var READER_DATE = "2015-11-25"; var READER_DATE = "2015-11-25";
   
// Keyboard key codes for displaying on the screen // Keyboard key codes for displaying on the screen
...@@ -12611,8 +12611,11 @@ function scrollFrame(pFrame, pScrollbar, pTopLineIdx, pTxtAttrib, pWriteTxtLines ...@@ -12611,8 +12611,11 @@ function scrollFrame(pFrame, pScrollbar, pTopLineIdx, pTxtAttrib, pWriteTxtLines
   
if (cycleFrame) if (cycleFrame)
{ {
if (pFrame.cycle() && (pScrollbar != null)) //if (pFrame.cycle() && (pScrollbar != null))
// pScrollbar.cycle();
if (pScrollbar != null)
pScrollbar.cycle(); pScrollbar.cycle();
pFrame.cycle();
} }
   
writeTxtLines = false; writeTxtLines = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment