Skip to content
Snippets Groups Projects
Commit f558e2be authored by Eric Oulashin's avatar Eric Oulashin Committed by Rob Swindell
Browse files

DDFileAreaChooser fix: Displays the configured header file again

parent 76f74740
Branches
No related tags found
1 merge request!537DDFileAreaChooser fix: Displays the configured header file again
...@@ -81,6 +81,8 @@ ...@@ -81,6 +81,8 @@
* F & L keys working again on the light bar menu (first & last page). * F & L keys working again on the light bar menu (first & last page).
* Fix to ensure the header lines are written in the proper place after * Fix to ensure the header lines are written in the proper place after
* showing help. * showing help.
* 2025-05-03 Eric Oulashin Version 1.42d
* Fix: Displays the configured area change header again
*/ */
// TODO: Failing silently when 1st argument is true // TODO: Failing silently when 1st argument is true
...@@ -121,8 +123,8 @@ if (system.version_num < 31400) ...@@ -121,8 +123,8 @@ if (system.version_num < 31400)
} }
// Version & date variables // Version & date variables
var DD_FILE_AREA_CHOOSER_VERSION = "1.42c"; var DD_FILE_AREA_CHOOSER_VERSION = "1.42d";
var DD_FILE_AREA_CHOOSER_VER_DATE = "2025-04-21"; var DD_FILE_AREA_CHOOSER_VER_DATE = "2025-05-03";
// Keyboard input key codes // Keyboard input key codes
var CTRL_H = "\x08"; var CTRL_H = "\x08";
...@@ -402,6 +404,14 @@ function DDFileAreaChooser_SelectFileArea(pChooseLib) ...@@ -402,6 +404,14 @@ function DDFileAreaChooser_SelectFileArea(pChooseLib)
{ {
console.clear("\x01n"); console.clear("\x01n");
// Write the header ANSI/ASC if there is one
if (this.areaChangeHdrLines.length > 0)
{
this.DisplayAreaChgHdr(1, false);
console.attributes = "N";
console.crlf();
}
// If we're displaying the file libraries (top level), then we'll output 1 // If we're displaying the file libraries (top level), then we'll output 1
// header line; otherwise, we'll output 2 header line; adjut the top line // header line; otherwise, we'll output 2 header line; adjut the top line
// of the menu accordingly. // of the menu accordingly.
......
...@@ -5,6 +5,8 @@ Revision History (change log) ...@@ -5,6 +5,8 @@ Revision History (change log)
============================= =============================
Version Date Description Version Date Description
------- ---- ----------- ------- ---- -----------
1.42d 2025-05-03 File area chooser only - Fix: Displays the configured
area change header again
1.42c 2025-04-21 F & L keys working again on the light bar menu (first & 1.42c 2025-04-21 F & L keys working again on the light bar menu (first &
last page). last page).
Message area chooser: Fix for Message area chooser: Fix for
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment