Skip to content
Snippets Groups Projects
Commit 90a6a9a4 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix help text wrapping issues recently introduced

Make the wizard use the same width (76) as the help screen to help identify text wrapping issues. Looks a bit better too.
parent edf9bc34
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #3819 passed
...@@ -155,7 +155,7 @@ void sort_dirs(int libnum) ...@@ -155,7 +155,7 @@ void sort_dirs(int libnum)
void wizard_msg(int page, int total, const char* text) void wizard_msg(int page, int total, const char* text)
{ {
uifc.showbuf(WIN_HLP|WIN_DYN|WIN_L2R, 2, 2, 78, 20, "Setup Wizard", text, NULL, NULL); uifc.showbuf(WIN_HLP|WIN_DYN|WIN_L2R, 2, 2, 76, 20, "Setup Wizard", text, NULL, NULL);
if(page > 0 && page < total) { if(page > 0 && page < total) {
int x = (uifc.scrn_width / 2) + 22; int x = (uifc.scrn_width / 2) + 22;
int y = 21; int y = 21;
...@@ -317,8 +317,8 @@ void cfg_wizard(void) ...@@ -317,8 +317,8 @@ void cfg_wizard(void)
"At this point you must re-enter the system password that you set earlier\n" "At this point you must re-enter the system password that you set earlier\n"
"in the configuration wizard.\n" "in the configuration wizard.\n"
"\n" "\n"
"This same password will be required of you when you login to the BBS with\n" "This same password will be required of you when you login to the BBS\n"
"any user account that has System Operator (sysop) privileges\n" "with any user account that has System Operator (sysop) privileges\n"
"(i.e. security level 90 or higher).\n" "(i.e. security level 90 or higher).\n"
); );
char pass[sizeof(cfg.sys_pass)]; char pass[sizeof(cfg.sys_pass)];
......
...@@ -118,12 +118,13 @@ int edit_sys_id(int page, int total) ...@@ -118,12 +118,13 @@ int edit_sys_id(int page, int total)
uifc.helpbuf= uifc.helpbuf=
"`BBS ID for QWK Packets:`\n" "`BBS ID for QWK Packets:`\n"
"\n" "\n"
"Enter an ID for your BBS that will be used for QWK message packets. This\n" "Enter an ID for your BBS that will be used for QWK message packets.\n"
"ID should be an abbreviation of your BBS name or other related words.\n" "This ID should be an abbreviation of your BBS name or other related\n"
"words.\n"
"\n" "\n"
"The maximum length of the ID is eight characters and cannot contain spaces\n" "The maximum length of the ID is eight characters and cannot contain\n"
"or other invalid DOS filename characters. This ID should not begin with a\n" "spaces or other invalid DOS filename characters. This ID should not\n"
"number.\n" "begin with a number.\n"
"\n" "\n"
"In a QWK packet network, each system must have a unique BBS ID.\n" "In a QWK packet network, each system must have a unique BBS ID.\n"
; ;
......
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