Skip to content
Snippets Groups Projects
Commit 572c92ed authored by nightfox's avatar nightfox
Browse files

Bug fix: The page number for message groups wasn't being updated in the area...

Bug fix: The page number for message groups wasn't being updated in the area chooser when using the up & down arrow keys to go to the next/previous page.
parent 255e2060
No related branches found
No related tags found
No related merge requests found
......@@ -214,8 +214,8 @@ if (system.version_num < 31500)
}
 
// Reader version information
var READER_VERSION = "1.10 Beta 7";
var READER_DATE = "2016-02-15";
var READER_VERSION = "1.10 Beta 8";
var READER_DATE = "2016-02-16";
 
// Keyboard key codes for displaying on the screen
var UP_ARROW = ascii(24);
......@@ -9828,6 +9828,7 @@ function DigDistMsgReader_SelectMsgArea_Lightbar()
// refresh the list on the screen.
topMsgGrpIndex -= numItemsPerPage;
bottomMsgGrpIndex = getBottommostGrpIndex(topMsgGrpIndex, numItemsPerPage);
this.UpdateMsgAreaPageNumInHeader(pageNum, numPages, true, false);
this.ListScreenfulOfMsgGrps(topMsgGrpIndex, listStartRow,
listEndRow, false, true);
}
......@@ -9852,6 +9853,7 @@ function DigDistMsgReader_SelectMsgArea_Lightbar()
// refresh the list on the screen.
topMsgGrpIndex += numItemsPerPage;
bottomMsgGrpIndex = getBottommostGrpIndex(topMsgGrpIndex, numItemsPerPage);
this.UpdateMsgAreaPageNumInHeader(pageNum+1, numPages, true, false);
this.ListScreenfulOfMsgGrps(topMsgGrpIndex, listStartRow,
listEndRow, false, true);
}
......
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