From f716d6e99d0fc5eb71f0a0bc373e6c4c43688b5c Mon Sep 17 00:00:00 2001 From: Charles Dang Date: Sun, 10 Jan 2016 21:24:31 +1100 Subject: [PATCH] tunit_create: small tweak to icon display --- data/gui/default/window/unit_create.cfg | 4 ++-- src/gui/dialogs/unit_create.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/gui/default/window/unit_create.cfg b/data/gui/default/window/unit_create.cfg index 5cddc0c489b..3220426f1cd 100644 --- a/data/gui/default/window/unit_create.cfg +++ b/data/gui/default/window/unit_create.cfg @@ -144,7 +144,7 @@ [column] border = "all" border_size = 5 - horizontal_alignment = "center" + horizontal_alignment = "left" [image] id = "type_race" @@ -155,7 +155,7 @@ [column] border = "all" border_size = 5 - horizontal_alignment = "center" + horizontal_alignment = "left" [image] id = "type_alignment" diff --git a/src/gui/dialogs/unit_create.cpp b/src/gui/dialogs/unit_create.cpp index a555fb88345..9e7a0384ebb 100644 --- a/src/gui/dialogs/unit_create.cpp +++ b/src/gui/dialogs/unit_create.cpp @@ -357,7 +357,7 @@ void tunit_create::list_item_clicked(twindow& window) u_name.set_use_markup(true); std::stringstream l_str; - l_str << "" << "L " << u->level() << ""; + l_str << "" << "Lvl " << u->level() << ""; tlabel& l_label = find_widget(&window, "type_level", false);