diff options
-rw-r--r-- | src/client/inventorylistview.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/inventorylistview.cc b/src/client/inventorylistview.cc index ed3419d..77daba2 100644 --- a/src/client/inventorylistview.cc +++ b/src/client/inventorylistview.cc @@ -86,7 +86,7 @@ void InventoryListView::set_inventory(core::Inventory *inventory, core::InfoType if (trader_item) { std::ostringstream std_price; std_price << trader_item->price() << " credits"; - str << aux::pad_left(std_price.str(), 14); + str << aux::pad_left(std_price.str(), 12); } if (trader_item) { @@ -111,12 +111,12 @@ void InventoryListView::set_inventory(core::Inventory *inventory, core::InfoType std::ostringstream std_price; std_price << item->price() << " credits"; - str << aux::pad_left(std_price.str(), 14); + str << aux::pad_left(std_price.str(), 12); } else { std::ostringstream std_price; std_price << item->price() << " credits"; - str << '\n' << aux::pad_left(std_price.str(), 24); + str << '\n' << aux::pad_left(std_price.str(), 22); } |