Skip to content
Snippets Groups Projects
Commit a168c6bc authored by rswindell's avatar rswindell
Browse files

Put the "Font Details" menu in the lower right corner so it doesn't obscure the

font list ("Font Management") menu.
parent d3ed9509
No related branches found
No related tags found
No related merge requests found
......@@ -250,7 +250,7 @@ void font_management(void)
opts[0][0]=0;
opt[0]=opts[0];
}
i=uifc.list(WIN_SAV|WIN_INS|WIN_INSACT|WIN_DEL|WIN_XTR|WIN_ACT,0,0,0,&cur,&bar,"Font",opt);
i=uifc.list(WIN_SAV|WIN_INS|WIN_INSACT|WIN_DEL|WIN_XTR|WIN_ACT,0,0,0,&cur,&bar,"Font Management",opt);
if(i==-1) {
save_font_files(fonts);
free_font_files(fonts);
......@@ -298,7 +298,7 @@ void font_management(void)
sprintf(opts[2],"8x14 %.50s",fonts[cur].path8x14?fonts[cur].path8x14:"<undefined>");
sprintf(opts[3],"8x16 %.50s",fonts[cur].path8x16?fonts[cur].path8x16:"<undefined>");
opts[4][0]=0;
i=uifc.list(WIN_SAV|WIN_ACT|WIN_INS|WIN_INSACT|WIN_DEL,0,0,0,&fcur,&fbar,"Font",opt);
i=uifc.list(WIN_SAV|WIN_ACT|WIN_INS|WIN_INSACT|WIN_DEL|WIN_RHT|WIN_BOT,0,0,0,&fcur,&fbar,"Font Details",opt);
if(i==-1)
break;
switch(i) {
......
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