[cl_menu] Set input line width

I have no idea when this became necessary, but at least the API was
already there.
This commit is contained in:
Bill Currie 2023-12-21 10:30:57 +09:00
parent 3dd7678962
commit a3e1a01adf

View file

@ -37,6 +37,7 @@
rect.size.height = 4; // history lines (stupid interface:P)
ilb = [[InputLineBox alloc] initWithBounds:rect promptCharacter:' '];
[ilb setEnter: self message:@selector(enter:)];
[ilb setWidth: rect.size.width];
[self addView:title];
[self addView:ilb];