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:
parent
f5113a55e2
commit
e1fce87f43
1 changed files with 1 additions and 1 deletions
2
main.js
2
main.js
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue