From 30bf9982bab96957c307f4f219b5ca954a72a8a8 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Wed, 20 Aug 2008 16:08:13 +0000 Subject: [PATCH] bnc381027 - Use 'Mirror Screens' for consistency with the checkbox 2008-08-20 Federico Mena Quintero * xrandr-capplet.c (get_display_name): Use "Mirror Screens" instead of "Cloned Output" in the display of monitors, to be consistent with the corresponding checkbox from the Glade file. Fixes https://bugzilla.novell.com/show_bug.cgi?id=381027 Signed-off-by: Federico Mena Quintero svn path=/trunk/; revision=8874 --- capplets/display/ChangeLog | 7 +++++++ capplets/display/xrandr-capplet.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/capplets/display/ChangeLog b/capplets/display/ChangeLog index bb21b22e0..371519513 100644 --- a/capplets/display/ChangeLog +++ b/capplets/display/ChangeLog @@ -1,3 +1,10 @@ +2008-08-20 Federico Mena Quintero + + * xrandr-capplet.c (get_display_name): Use "Mirror Screens" + instead of "Cloned Output" in the display of monitors, to be + consistent with the corresponding checkbox from the Glade file. + Fixes https://bugzilla.novell.com/show_bug.cgi?id=381027 + 2008-08-13 Federico Mena Quintero * xrandr-capplet.c (paint_output): Instead of using hard-coded diff --git a/capplets/display/xrandr-capplet.c b/capplets/display/xrandr-capplet.c index faa75a766..59bdb1321 100644 --- a/capplets/display/xrandr-capplet.c +++ b/capplets/display/xrandr-capplet.c @@ -1311,7 +1311,7 @@ get_display_name (App *app, const char *text; if (app->current_configuration->clone) - text = _("Cloned Output"); + text = _("Mirror Screens"); else text = output->display_name;