Avoid jumping on keypress for non-character keys.

Without this fix, trying to use shift+page up/down to scroll is very
cumbersome.  Other similar key combinations may exist, but I'm not 
sure.



SVN revision: 73546
This commit is contained in:
Nicholas Hughart 2012-07-11 00:18:28 +00:00
parent 5526a33a40
commit 9ef6a138c5
1 changed files with 1 additions and 1 deletions

View File

@ -1074,7 +1074,7 @@ _smart_cb_key_down(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__,
}
}
}
if (sd->jump_on_keypress)
if (sd->jump_on_keypress && ev->string && (ev->string[0] != 0))
{
sd->scroll = 0;
_smart_update_queue(data, sd);