Reformat the 'Enter aspect ratio' text to be formatted as a block rather than a very wide string that looked silly.

Originally committed to SVN as r3438.
This commit is contained in:
Amar Takhar 2009-08-22 03:56:02 +00:00
parent 775c73de29
commit 3de6c63ddd
1 changed files with 3 additions and 3 deletions

View File

@ -1550,7 +1550,7 @@ void FrameMain::OnSetARCustom (wxCommandEvent &event) {
// Get text // Get text
VideoContext::Get()->Stop(); VideoContext::Get()->Stop();
wxString value = wxGetTextFromUser(_("Enter aspect ratio in either decimal (e.g. 2.35) or fractional (e.g. 16:9) form. Enter a value like 853x480 to set a specific resolution."),_("Enter aspect ratio"),AegiFloatToString(VideoContext::Get()->GetAspectRatioValue())); wxString value = wxGetTextFromUser(_("Enter aspect ratio in either:\n decimal (e.g. 2.35)\n fractional (e.g. 16:9)\n specific resolution (e.g. 853x480)"),_("Enter aspect ratio"),AegiFloatToString(VideoContext::Get()->GetAspectRatioValue()));
if (value.IsEmpty()) return; if (value.IsEmpty()) return;
value.MakeLower(); value.MakeLower();