From a3e1a01adf9a9dffa7e3d2c21200fa801d30c24c Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 21 Dec 2023 10:30:57 +0900 Subject: [PATCH] [cl_menu] Set input line width I have no idea when this became necessary, but at least the API was already there. --- ruamoko/cl_menu/CvarStringView.r | 1 + 1 file changed, 1 insertion(+) diff --git a/ruamoko/cl_menu/CvarStringView.r b/ruamoko/cl_menu/CvarStringView.r index da8131d8f..20ad3b84b 100644 --- a/ruamoko/cl_menu/CvarStringView.r +++ b/ruamoko/cl_menu/CvarStringView.r @@ -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];