diff options
author | Justin Patrin <papercrane@gmail.com> | 2005-08-16 22:04:52 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-16 22:04:52 +0000 |
commit | 4980f85ed310bd9d9358e2c619447f468472bd3d (patch) | |
tree | 89181b078f3a86c138ce86e693f70935973aa1f5 | |
parent | 308a3289426a73ae7c5493c1704365955e3ccd82 (diff) | |
parent | 1dc8497b30e9a03027067c90f8af9bcb7a84725c (diff) |
merge of 089249369750f63e5367ef0ab91c190f50ae55e9
and 093694eab501a28fcb36f83dedad796958b7a9ce
-rw-r--r-- | packages/e17/e-wm/add-menu-autoscroll-options.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/e17/e-wm/add-menu-autoscroll-options.patch b/packages/e17/e-wm/add-menu-autoscroll-options.patch index 536e0c5390..79bcad8e44 100644 --- a/packages/e17/e-wm/add-menu-autoscroll-options.patch +++ b/packages/e17/e-wm/add-menu-autoscroll-options.patch @@ -51,7 +51,7 @@ diff -Nur e~/src/bin/e_ipc_handlers.h e/src/bin/e_ipc_handlers.h +/****************************************************************************/ +#define HDL E_IPC_OP_MENU_AUTOSCROLL_MARGIN_SET +#if (TYPE == E_REMOTE_OPTIONS) -+ OP("-menu-autoscroll-margin-set", 1, "Set the menu autoscroll margin", 0, HDL) ++ OP("-menu-autoscroll-margin-set", 1, "Set the distance from the edge of the screen the menu will autoscroll to", 0, HDL) +#elif (TYPE == E_REMOTE_OUT) + REQ_INT(atoi(params[0]), HDL); +#elif (TYPE == E_WM_IN) @@ -67,7 +67,7 @@ diff -Nur e~/src/bin/e_ipc_handlers.h e/src/bin/e_ipc_handlers.h +/****************************************************************************/ +#define HDL E_IPC_OP_MENU_AUTOSCROLL_MARGIN_GET +#if (TYPE == E_REMOTE_OPTIONS) -+ OP("-menu-autoscroll-margin-get", 0, "Get the menu autoscroll margin", 1, HDL) ++ OP("-menu-autoscroll-margin-get", 0, "Get the distance from the edge of the screen the menu will autoscroll to", 1, HDL) +#elif (TYPE == E_REMOTE_OUT) + REQ_NULL(HDL) +#elif (TYPE == E_WM_IN) @@ -91,7 +91,7 @@ diff -Nur e~/src/bin/e_ipc_handlers.h e/src/bin/e_ipc_handlers.h +/****************************************************************************/ +#define HDL E_IPC_OP_MENU_AUTOSCROLL_CURSOR_MARGIN_SET +#if (TYPE == E_REMOTE_OPTIONS) -+ OP("-menu-autoscroll-cursor-margin-set", 1, "Set the menu autoscroll cursor margin", 0, HDL) ++ OP("-menu-autoscroll-cursor-margin-set", 1, "Set the distance from the edge of the screen the cursor needs to be to start menu autoscrolling", 0, HDL) +#elif (TYPE == E_REMOTE_OUT) + REQ_INT(atoi(params[0]), HDL); +#elif (TYPE == E_WM_IN) @@ -108,7 +108,7 @@ diff -Nur e~/src/bin/e_ipc_handlers.h e/src/bin/e_ipc_handlers.h +/****************************************************************************/ +#define HDL E_IPC_OP_MENU_AUTOSCROLL_CURSOR_MARGIN_GET +#if (TYPE == E_REMOTE_OPTIONS) -+ OP("-menu-autoscroll-cursor-margin-get", 0, "Get the menu autoscroll cursor margin", 1, HDL) ++ OP("-menu-autoscroll-cursor-margin-get", 0, "Get the distance from the edge of the screen the cursor needs to be to start menu autoscrolling", 1, HDL) +#elif (TYPE == E_REMOTE_OUT) + REQ_NULL(HDL) +#elif (TYPE == E_WM_IN) |