From 4febddc346e6464d6469973c3725034b28012721 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 27 Jun 2012 07:22:58 +0000 Subject: [PATCH] clarify that window:actions{move by,move to} are for coordinate movement, not desk/screen movement SVN revision: 72923 --- src/bin/e_actions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c index 4c98c003d..5000cb2e9 100644 --- a/src/bin/e_actions.c +++ b/src/bin/e_actions.c @@ -3039,12 +3039,12 @@ e_actions_init(void) "window_move_to_center", NULL, NULL, 0); /* window_move_to */ ACT_GO(window_move_to); - e_action_predef_name_set(N_("Window : Actions"), N_("Move To..."), + e_action_predef_name_set(N_("Window : Actions"), N_("Move To Coordinates..."), "window_move_to", NULL, "syntax: [+,-]X [+,-]Y or * [+,-]Y or [+,-]X *, example: -1 +1", 1); /* window_move_by */ ACT_GO(window_move_by); - e_action_predef_name_set(N_("Window : Actions"), N_("Move By..."), + e_action_predef_name_set(N_("Window : Actions"), N_("Move By Coordinate Offset..."), "window_move_by", NULL, "syntax: X-offset Y-offset, example: -1 0", 1);