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;