From 6d4324354f7313b3ad45d55dd4d2d802526d5478 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Fri, 1 Jan 2021 11:03:54 +0200 Subject: [PATCH] Resolved #3490 - fixed formatting problem in trade popup --- core/src/com/unciv/ui/worldscreen/TradePopup.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/unciv/ui/worldscreen/TradePopup.kt b/core/src/com/unciv/ui/worldscreen/TradePopup.kt index 84880d4a38..eb1f19d1c7 100644 --- a/core/src/com/unciv/ui/worldscreen/TradePopup.kt +++ b/core/src/com/unciv/ui/worldscreen/TradePopup.kt @@ -56,7 +56,7 @@ class TradePopup(worldScreen: WorldScreen): Popup(worldScreen){ val scrollHeight = min(tradeOffersTable.height, worldScreen.stage.height/2) add(ScrollPane(tradeOffersTable)).height(scrollHeight).row() - addGoodSizedLabel(nation.tradeRequest).colspan(columns).row() + addGoodSizedLabel(nation.tradeRequest).colspan(2).row() val soundsGoodButton = addButton("Sounds good!"){ val tradeLogic = TradeLogic(viewingCiv, requestingCiv)