Make the default_app unresizable.
authorCheng Zhao <zcbenz@gmail.com>
Thu, 22 May 2014 01:09:32 +0000 (09:09 +0800)
committerCheng Zhao <zcbenz@gmail.com>
Thu, 22 May 2014 01:09:32 +0000 (09:09 +0800)
atom/browser/default_app/default_app.js

index 0c2ddcf..51123f1 100644 (file)
@@ -17,6 +17,7 @@ app.on('ready', function() {
   mainWindow = new BrowserWindow({
     width: 800,
     height: 600,
+    resizable: false,
     'use-content-size': true,
   });
   mainWindow.loadUrl('file://' + __dirname + '/index.html');