Merge pull request #2236 from McGiverGim/fix_window_title_flicker
Remove window title hack for Chrome10.8-maintenance
commit
36fe5f48b8
|
@ -2,10 +2,6 @@
|
|||
"translation_version": {
|
||||
"message": "0"
|
||||
},
|
||||
"windowTitle": {
|
||||
"message": "Betaflight Configurator",
|
||||
"description": "Title of the application window, usually not translated"
|
||||
},
|
||||
"yes": {
|
||||
"message": "Yes",
|
||||
"description": "General Yes message to be used across the application"
|
||||
|
|
|
@ -20,7 +20,8 @@
|
|||
"icon": "images/bf_icon_128.png",
|
||||
"id": "main-window",
|
||||
"min_width": 1024,
|
||||
"min_height": 550
|
||||
"min_height": 550,
|
||||
"title": "Betaflight Configurator"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -143,9 +143,8 @@
|
|||
<script type="text/javascript" src="./components/MotorOutputReordering/MotorOutputReorderingCanvas.js"></script>
|
||||
<script type="text/javascript" src="./components/MotorOutputReordering/MotorOutputReorderingConfig.js"></script>
|
||||
<script type="text/javascript" src="./node_modules/select2/dist/js/select2.min.js"></script>
|
||||
|
||||
|
||||
<title i18n="windowTitle"></title>
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="main-wrapper">
|
||||
|
|
Loading…
Reference in New Issue