diff options
author | Xan Lopez <xan@igalia.com> | 2012-01-14 01:21:33 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-01-14 04:21:47 +0800 |
commit | 6b31d789addfa284e7b1860dbb7d3d1e5c9e7c68 (patch) | |
tree | d4553538438377eddfee918712b268b3134615ae /src | |
parent | 2050f8d49b22c28cd0a6917dce9caeef48a57f6b (diff) | |
download | gsoc2013-epiphany-6b31d789addfa284e7b1860dbb7d3d1e5c9e7c68.tar gsoc2013-epiphany-6b31d789addfa284e7b1860dbb7d3d1e5c9e7c68.tar.gz gsoc2013-epiphany-6b31d789addfa284e7b1860dbb7d3d1e5c9e7c68.tar.bz2 gsoc2013-epiphany-6b31d789addfa284e7b1860dbb7d3d1e5c9e7c68.tar.lz gsoc2013-epiphany-6b31d789addfa284e7b1860dbb7d3d1e5c9e7c68.tar.xz gsoc2013-epiphany-6b31d789addfa284e7b1860dbb7d3d1e5c9e7c68.tar.zst gsoc2013-epiphany-6b31d789addfa284e7b1860dbb7d3d1e5c9e7c68.zip |
ephy-window: make fullscreen an extra binding
Otherwise it won't work since it's not in any menu at the moment. That
should change.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-window.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index c2cf439eb..5879111af 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -342,6 +342,8 @@ static const struct * extra keybindings, but does not seem to work for some * reason. */ { GDK_KEY_e, GDK_MOD1_MASK, "PageMenu", TRUE }, + /* FIXME: this is not in any menu for now, so add it here. */ + { GDK_KEY_F11, 0, "ViewFullscreen", FALSE }, { GDK_KEY_s, GDK_CONTROL_MASK, "FileSaveAs", FALSE }, { GDK_KEY_R, GDK_CONTROL_MASK | GDK_SHIFT_MASK, "ViewReload", FALSE }, |