Fix typo when converting font to user-readable string
If a font uses both underline and strike-through the user-readable string would read "underlinedstrikethrough". Prepend a space to the strike-through translation as is already the case for the other font adjectives (except the very first one). Not prepending a space outside of the translation for i18n reasons (such as RTL though in this case that doesn't apply because of the way the string gets concatenated).
This commit is contained in:
parent
59e428671c
commit
78145f9162
1 changed files with 1 additions and 1 deletions
|
|
@ -802,7 +802,7 @@ wxString wxNativeFontInfo::ToUserString() const
|
|||
|
||||
if ( GetStrikethrough() )
|
||||
{
|
||||
desc << _("strikethrough");
|
||||
desc << _(" strikethrough");
|
||||
}
|
||||
|
||||
switch ( GetWeight() )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue