Skip to content
Snippets Groups Projects
Commit a44fe5d9 authored by Ivica Ico Bukvic's avatar Ivica Ico Bukvic
Browse files

removed unnecessary workaround

parent 7cd8c89a
No related branches found
No related tags found
No related merge requests found
...@@ -199,8 +199,6 @@ void glob_initfromgui(void *dummy, t_symbol *s, int argc, t_atom *argv) ...@@ -199,8 +199,6 @@ void glob_initfromgui(void *dummy, t_symbol *s, int argc, t_atom *argv)
/* best is now the host font index for the desired font index i. */ /* best is now the host font index for the desired font index i. */
sys_fontlist[i].fi_hostfontsize = atom_getintarg(3 * best + 2, argc, argv); sys_fontlist[i].fi_hostfontsize = atom_getintarg(3 * best + 2, argc, argv);
sys_fontlist[i].fi_width = atom_getintarg(3 * best + 3, argc, argv); sys_fontlist[i].fi_width = atom_getintarg(3 * best + 3, argc, argv);
/* workaround for the quirky font size 16 */
if (sys_fontlist[i].fi_fontsize == 16) sys_fontlist[i].fi_width -= 1;
sys_fontlist[i].fi_height = atom_getintarg(3 * best + 4, argc, argv); sys_fontlist[i].fi_height = atom_getintarg(3 * best + 4, argc, argv);
sys_fontlist[i].fi_maxwidth = sys_fontlist[i].fi_width; sys_fontlist[i].fi_maxwidth = sys_fontlist[i].fi_width;
sys_fontlist[i].fi_maxheight = sys_fontlist[i].fi_height; sys_fontlist[i].fi_maxheight = sys_fontlist[i].fi_height;
......
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