From 44e1f6a57859f098d2948e0576a671354e5d303a Mon Sep 17 00:00:00 2001 From: Dustin Carlino Date: Wed, 27 Jan 2021 13:45:09 -0800 Subject: [PATCH] Slightly less awful building people info panel: Two-column table of person ID and departure time --- game/src/info/building.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/src/info/building.rs b/game/src/info/building.rs index 1879c27dbe..70bb12720c 100644 --- a/game/src/info/building.rs +++ b/game/src/info/building.rs @@ -178,7 +178,7 @@ pub fn people(ctx: &mut EventCtx, app: &App, details: &mut Details, id: Building details .hyperlinks .insert(p.to_string(), Tab::PersonTrips(p, BTreeMap::new())); - let widget = Widget::col(vec![ + let widget = Widget::row(vec![ ctx.style() .btn_solid_dark_text(&p.to_string()) .build_def(ctx),