switchbrew / nx-hbmenu

The Nintendo Switch Homebrew Menu
ISC License
1.19k stars 127 forks source link

Menu entry icon display bug #149

Open zemixe opened 2 years ago

zemixe commented 2 years ago

I came across the following display bug for any menu entry icon below 120x120. Reproducible using 119x119 size or smaller with menuListIcon

1

yellows8 commented 2 years ago

Share your theme config file?

monstrosities commented 2 years ago

I noticed that graphical glitch when playing around with themes but I think it comes from menuList and not menuListIcon ?

For example this config is fine:

layout={
    menuList={
        size=(120,160);
    };
    menuListIcon={
        size=(110,110);
    };
};

But this config shows the graphical glitch:

layout={
    menuList={
        size=(119,160);
    };
    menuListIcon={
        size=(110,110);
    };
};