keybind: e - toggle thread expansion. closes #100

This commit is contained in:
James Campos 2011-05-22 10:06:13 -07:00
parent e4b65e6dad
commit 2d75eedc54
2 changed files with 4 additions and 0 deletions

View File

@ -720,6 +720,8 @@
return keybinds.img(thread, true); return keybinds.img(thread, true);
case 'O': case 'O':
return keybinds.open(thread); return keybinds.open(thread);
case 'e':
return expandThread.toggle(thread);
case 'i': case 'i':
return keybinds.qr(thread, true); return keybinds.qr(thread, true);
case 'm': case 'm':

View File

@ -529,6 +529,8 @@ keybinds =
keybinds.img thread, true keybinds.img thread, true
when 'O' when 'O'
keybinds.open thread keybinds.open thread
when 'e'
expandThread.toggle thread
when 'i' when 'i'
keybinds.qr thread, true keybinds.qr thread, true
when 'm' when 'm'