Showing 1 changed files with 4 additions and 4 deletions
+4 -4
.fgfs/Input/Joysticks/T-Flight-Stick-X.xml
... ...
@@ -167,25 +167,25 @@ state when back to normal view
167 167
         7 : func {
168 168
           if    (getprop(pressed_button[10])) addSelectedEngine(2);
169 169
           elsif (getprop(pressed_button[11])) removeSelectedEngine(2);
170
-          else controls.adjMixture(-1);
170
+          else controls.adjMixture(-0.1);
171 171
         },
172 172
 
173 173
         8 : func {
174 174
           if    (getprop(pressed_button[10])) addSelectedEngine(3);
175 175
           elsif (getprop(pressed_button[11])) removeSelectedEngine(3);
176
-          else controls.adjMixture(1);
176
+          else controls.adjMixture(0.1);
177 177
         },
178 178
 
179 179
         9 : func {
180 180
           if    (getprop(pressed_button[10])) addSelectedEngine(1);
181 181
           elsif (getprop(pressed_button[11])) removeSelectedEngine(1);
182
-          else controls.adjPropeller(1);
182
+          else controls.adjPropeller(0.1);
183 183
         },
184 184
 
185 185
         10 : func {
186 186
           if    (getprop(pressed_button[10])) addSelectedEngine(0);
187 187
           elsif (getprop(pressed_button[11])) removeSelectedEngine(0);
188
-          else controls.adjPropeller(-1);
188
+          else controls.adjPropeller(-0.1);
189 189
         },
190 190
       }
191 191
     ]]></script>