Add Escape keybinding for "stop" in FFNav
authorChip Black <bytex64@bytex64.net>
Thu, 11 Jun 2009 22:12:02 +0000 (17:12 -0500)
committerChip Black <bytex64@bytex64.net>
Thu, 11 Jun 2009 22:12:02 +0000 (17:12 -0500)
plugins/FFNav.cs

index 588f432..15d3504 100644 (file)
@@ -61,6 +61,9 @@ public class FFNav : WebThingPlugin {
             case Gdk.Key.BackSpace:
                 wv.GoBack();
                 break;
+            case Gdk.Key.Escape:
+                wv.StopLoading();
+                break;
             }
         }
     }