Fix double-title-bar bug.

BUG=384696

Review URL: https://codereview.chromium.org/341733003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278029 0039d316-1c4b-4281-b951-d872f2087c98
parent e8225fad
......@@ -48,7 +48,11 @@ remoting.Toolbar = function(toolbar) {
registerEventListener('new-connection', 'click',
function() {
chrome.app.window.create('main.html', { 'width': 800, 'height': 600 });
chrome.app.window.create('main.html', {
'width': 800,
'height': 600,
'frame': "none"
});
});
registerEventListener('send-ctrl-alt-del', 'click', remoting.sendCtrlAltDel);
registerEventListener('send-print-screen', 'click', remoting.sendPrintScreen);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment