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

Display > 8 char internal codes better

parent 5f7d4f64
No related branches found
No related tags found
No related merge requests found
......@@ -1057,13 +1057,13 @@ void sys_cfg(void)
break;
uifc.changes=1;
if(i && i<=cfg.total_xedits)
sprintf(cfg.new_xedit,"%-.8s",cfg.xedit[i-1]->code);
SAFECOPY(cfg.new_xedit, cfg.xedit[i-1]->code);
else
cfg.new_xedit[0]=0;
break;
case 11:
for(i=0;i<cfg.total_shells && i<MAX_OPTS;i++)
sprintf(opt[i],"%-.8s",cfg.shell[i]->code);
sprintf(opt[i],"%-.*s", LEN_CODE, cfg.shell[i]->code);
opt[i][0]=0;
i=0;
uifc.helpbuf=
......
......@@ -440,7 +440,8 @@ void tevents_cfg()
while(1) {
for(i=0;i<cfg.total_events && i<MAX_OPTS;i++)
sprintf(opt[i],"%-8.8s %s"
sprintf(opt[i],"%-*s %s"
,LEN_CODE
,cfg.event[i]->code
,(cfg.event[i]->misc&EVENT_DISABLED) ? "<DISABLED>" : cfg.event[i]->cmd);
opt[i][0]=0;
......@@ -1739,7 +1740,7 @@ void xedit_cfg()
while(1) {
for(i=0;i<cfg.total_xedits && i<MAX_OPTS;i++)
sprintf(opt[i],"%-8.8s %s",cfg.xedit[i]->code,cfg.xedit[i]->rcmd);
sprintf(opt[i],"%-*s %s", LEN_CODE, cfg.xedit[i]->code, cfg.xedit[i]->rcmd);
opt[i][0]=0;
j=WIN_SAV|WIN_ACT|WIN_CHE|WIN_RHT;
if(cfg.total_xedits)
......
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