The box uses the size from the first line additional to the set icon. As the

tags are not counted we need to break the line earlier to show the complete text
in the dialog window.

Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>


SVN revision: 65370
This commit is contained in:
Stefan Schmidt 2011-11-18 08:00:32 +00:00 committed by Mike Blumenkrantz
parent 3a2cdebbbf
commit 1024977100
1 changed files with 4 additions and 2 deletions

View File

@ -174,13 +174,15 @@ _e_conf_randr_confirmation_dialog_timer_cb(void *data)
{
snprintf(buf, sizeof(buf),
_("Does this look OK? Click <hilight>Keep</hilight> if it does, or Restore if not.<br>"
"If you do not press a button, the previous settings will be restored in %d seconds."), cdd->countdown);
"If you do not press a button, the previous settings will be<br>"
"restored in %d seconds."), cdd->countdown);
}
else
{
snprintf(buf, sizeof(buf),
_("Does this look OK? Click <hilight>Keep</hilight> if it does, or Restore if not.<br>"
"If you do not press a button, the previous settings will be restored <highlight>IMMEDIATELY</highlight>."));
"If you do not press a button, the previous settings will be<br>"
"restored <highlight>IMMEDIATELY</highlight>."));
}
e_dialog_text_set(cdd->dialog, buf);