From 1024977100783c545bc0860927692b6ce8509005 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 18 Nov 2011 08:00:32 +0000 Subject: [PATCH] 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 SVN revision: 65370 --- src/modules/conf_randr/e_int_config_randr.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/modules/conf_randr/e_int_config_randr.c b/src/modules/conf_randr/e_int_config_randr.c index 4ac915ca3..da229c9e3 100644 --- a/src/modules/conf_randr/e_int_config_randr.c +++ b/src/modules/conf_randr/e_int_config_randr.c @@ -174,13 +174,15 @@ _e_conf_randr_confirmation_dialog_timer_cb(void *data) { snprintf(buf, sizeof(buf), _("Does this look OK? Click Keep if it does, or Restore if not.
" - "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
" + "restored in %d seconds."), cdd->countdown); } else { snprintf(buf, sizeof(buf), _("Does this look OK? Click Keep if it does, or Restore if not.
" - "If you do not press a button, the previous settings will be restored IMMEDIATELY.")); + "If you do not press a button, the previous settings will be
" + "restored IMMEDIATELY.")); } e_dialog_text_set(cdd->dialog, buf);