1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 22:35:23 +03:00

2 px overhead fix

(dynamic size of the app according to the user screen will be removed
soon)
This commit is contained in:
cTn 2014-02-01 20:36:19 +01:00
parent f5113a55e2
commit e1fce87f43

View file

@ -20,7 +20,7 @@ $(document).ready(function() {
chrome.app.window.current().setBounds({width: 962, height: 629}); chrome.app.window.current().setBounds({width: 962, height: 629});
} else { } else {
$('div#content').height(280); $('div#content').height(280);
chrome.app.window.current().setBounds({width: 960, height: 429}); chrome.app.window.current().setBounds({width: 962, height: 429});
} }
// bind controls // bind controls