zaburo / web-shell

Automatically exported from code.google.com/p/web-shell
0 stars 0 forks source link

Sending TAB key under Firefox #48

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Hit TAB

What is the expected output? What do you see instead?
I expect the TAB to go to the shell, but rather it changes focus to the
address entry window, then the search engine window, then back to the main
screen.  Very annoying.

What version of the product are you using? On what operating system?
0.9.6, from Firefox 3.0.10 in WinXP

Please provide any additional information below.

To fix:
Add a line at 132 in webshell.js (in the case statement inside
if(ev.which==0) )

case 9:  break;  // Tab

Change line 166 from:
return true;
to
return false;

Now it seems to work just perfectly.

Original issue reported on code.google.com by gjhur...@gmail.com on 27 May 2009 at 7:55