Compare commits

...

3 Commits

Author SHA1 Message Date
NishiOwO
c8e7f58230 wrong 2025-12-23 22:11:22 +09:00
NishiOwO
9ea54b4f88 format 2025-12-23 22:08:55 +09:00
NishiOwO
55f82e4fbc update 2025-12-23 22:08:49 +09:00
2 changed files with 2 additions and 1 deletions

View File

@@ -108,6 +108,7 @@ struct _MwMenu {
int keep;
MwWidget wsub;
MwMenu* sub;
void* opaque;
};
struct _MwEntry {

View File

@@ -66,7 +66,7 @@ static void draw(MwWidget handle) {
if(menu->sub[i]->wsub != NULL) {
r.x = 0;
r.y = p.y - 3;
r.width = MwGetInteger(handle, MwNwidth);
r.width = MwGetInteger(handle, MwNwidth);
r.height = th + 3 * 2;
MwDrawWidgetBack(handle, &r, base, 0, MwTRUE);
}