diff console/libgnt/gntbox.c @ 14876:70623f0d5cdc

[gaim-migrate @ 17645] Use terminfo/termcap information (from ncurses) as much as possible. There still need to be some manual 'refinement' based on $TERM. I'll see if I can get rid of those. Also, I am probably going to allow users to provide information that terminfo can't provide, like the keycode for ctrl+up etc. Let me know if any of the keybinding doesn't work. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 01 Nov 2006 03:38:23 +0000
parents c7651586e27b
children d059cfbb62ae
line wrap: on
line diff
--- a/console/libgnt/gntbox.c	Wed Nov 01 02:13:37 2006 +0000
+++ b/console/libgnt/gntbox.c	Wed Nov 01 03:38:23 2006 +0000
@@ -285,11 +285,11 @@
 
 	if (text[0] == 27)
 	{
-		if (strcmp(text+1, GNT_KEY_LEFT) == 0)
+		if (strcmp(text, GNT_KEY_LEFT) == 0)
 		{
 			find_prev_focus(box);
 		}
-		else if (strcmp(text+1, GNT_KEY_RIGHT) == 0)
+		else if (strcmp(text, GNT_KEY_RIGHT) == 0)
 		{
 			find_next_focus(box);
 		}