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 <[email protected]> --- e/src/modules/conf_randr/e_int_config_randr.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/e/src/modules/conf_randr/e_int_config_randr.c b/e/src/modules/conf_randr/e_int_config_randr.c index 267afca..0f7247b 100644 --- a/e/src/modules/conf_randr/e_int_config_randr.c +++ b/e/src/modules/conf_randr/e_int_config_randr.c @@ -169,13 +169,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); -- 1.7.7.3 ------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-novd2d _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
