Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2020-04-02 19:27:54 +0300
committerPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2020-04-02 19:27:54 +0300
commitfa7b29be7dfd5ce97d741bae89638efc755b6ac8 (patch)
treec27f3fc6fd3db4bfb44cfe759592b1677b96c1e7
parentf916a1f0bdabb27aff47d5acca2ebf47e6ed8303 (diff)
Make info more specific
-rwxr-xr-x_locales/en/messages.json3
-rwxr-xr-xmain.html1
-rw-r--r--src/css/defaults_dialog.css3
3 files changed, 6 insertions, 1 deletions
diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index f85efbaa..e5ae2fdc 100755
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -3281,6 +3281,9 @@
"defaultsDialogInfo": {
"message": "INAV Configurator would like to know which kind of UAV you are configuring. Based on this information it will modify some default values to unlock the best flying performance. "
},
+ "defaultsDialogInfo2": {
+ "message": "Avoid blindly restoring all PID and filter configuration from the previous version of INAV. The best result can be obtained by retuning from defaults!"
+ },
"throttleIdle": {
"message": "Motors IDLE power [%]"
},
diff --git a/main.html b/main.html
index 49b8c25c..07a111ac 100755
--- a/main.html
+++ b/main.html
@@ -296,6 +296,7 @@
<div class="tab_title" data-i18n="defaultsDialogTitle"></div>
<div class="defaults-dialog__content--wrapper">
<p class="defaults-dialog__info" data-i18n="defaultsDialogInfo"></p>
+ <p class="defaults-dialog__info" data-i18n="defaultsDialogInfo2"></p>
<div class="defaults-dialog__options"></div>
</div>
</div>
diff --git a/src/css/defaults_dialog.css b/src/css/defaults_dialog.css
index 7dcf0860..bffdafba 100644
--- a/src/css/defaults_dialog.css
+++ b/src/css/defaults_dialog.css
@@ -15,7 +15,7 @@
z-index: 2002;
position: absolute;
width: 500px;
- height: 320px;
+ height: 400px;
overflow-y: auto;
top: 0;
bottom: 0;
@@ -31,6 +31,7 @@
.defaults-dialog__info {
font-size: 1.3em;
+ margin-bottom: 1em;
}
.defaults_btn {