From 5e7656489dd28b952f79648e0b4ea508a3f9389f Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 3 Jun 2013 13:16:51 -0700 Subject: [PATCH] Add toggle full screen to View menu --- src/atom-application.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/src/atom-application.coffee b/src/atom-application.coffee index 478d29305..e16fcd827 100644 --- a/src/atom-application.coffee +++ b/src/atom-application.coffee @@ -150,6 +150,7 @@ class AtomApplication label: 'View' submenu:[ { label: 'Reload', accelerator: 'Command+R', click: => BrowserWindow.getFocusedWindow()?.restart() } + { label: 'Toggle Full Screen', accelerator: 'Command+MacCtrl+F', click: => BrowserWindow.getFocusedWindow()?.setFullscreen(!BrowserWindow.getFocusedWindow().isFullscreen()) } { label: 'Toggle DevTools', accelerator: 'Alt+Command+I', click: => BrowserWindow.getFocusedWindow()?.toggleDevTools() } ]