Try to use bubble widget for the description of addons. Also removed

'Description:' text.


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@8555 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2011-05-13 00:51:13 +00:00
parent 1ad86ccf55
commit 5d787ec0cb
2 changed files with 3 additions and 5 deletions

View File

@ -11,7 +11,7 @@
</div>
<spacer proportion="1" />
<div width="50%" height="100%" layout="vertical-row" >
<label word_wrap="true" id="description" width="100%" text="Description:" proportion="1" />
<bubble word_wrap="true" id="description" height="100%" width="100%" text="" proportion="6" />
<label id="size" width="100%" text="Size:" proportion="1" />
<label id="revision" width="100%" text="Version:" proportion="1" />
</div>

View File

@ -64,11 +64,9 @@ AddonsLoading::AddonsLoading(const float w, const float h,
getWidget<ButtonWidget>("install")->setLabel(_("Uninstall"));
}
core::stringw name = _("Name: %i", m_addon.getName().c_str() );
getWidget<LabelWidget>("name")->setText(name, false);
getWidget<LabelWidget>("name")->setText(m_addon.getName().c_str(), false);
core::stringw desc = _("Description: %i", m_addon.getDescription().c_str());
getWidget<LabelWidget>("description")->setText(desc, false);
getWidget<BubbleWidget>("description")->setText(m_addon.getDescription().c_str());
core::stringw revision = _("Version: %d", m_addon.getRevision());
getWidget<LabelWidget>("revision")->setText(revision, false);