mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-28 11:59:21 +00:00
minor fix: comment
This commit is contained in:
parent
4381b59299
commit
e8edcafca3
@ -56,16 +56,16 @@ typedef union {
|
||||
// Auto mouse layer (true/false)
|
||||
// 2^1=2, default: 1, max: 1
|
||||
uint32_t mouse_layer_on : 1;
|
||||
// Auto mouse layer off delay time in ms (0-6300 ms)
|
||||
// Auto mouse layer off delay time in ms (value * 100ms)
|
||||
// 2^6=64, default: 13, max: 63
|
||||
uint32_t mouse_layer_off_delay_ms : 6;
|
||||
// Angle adjustment per 2 degrees for trackballs (left)
|
||||
// Angle adjustment for trackballs (left)
|
||||
// 2^9=512, default: 0, max: 359
|
||||
uint32_t angle_L : 9;
|
||||
// Angle adjustment per 2 degrees for trackballs (right)
|
||||
// Angle adjustment for trackballs (right)
|
||||
// 2^9=512, default: 0, max: 359
|
||||
uint32_t angle_R : 9;
|
||||
// Pointer speed magnification (0.25 * value)
|
||||
// Pointer speed magnification (value * 0.25)
|
||||
// 2^4=16, default: 4, max: 15
|
||||
uint32_t pointer_speed_magnification : 4;
|
||||
// Invert drag scroll X-axis direction (true/false)
|
||||
@ -74,7 +74,7 @@ typedef union {
|
||||
// Invert drag scroll Y-axis direction (true/false)
|
||||
// 2^1=2, default: 0, max: 1
|
||||
uint32_t invert_drag_scroll_y : 1;
|
||||
// Drag scroll speed magnification (0.25 * value)
|
||||
// Drag scroll speed magnification (value * 0.25)
|
||||
// 2^4=16, default: 4, max: 15
|
||||
uint32_t drag_scroll_speed_magnification : 4;
|
||||
// Trackball LED off timeout (never, 5min, 10min, 15 min)
|
||||
|
@ -23,62 +23,62 @@
|
||||
{
|
||||
"name": "AUTO_MOUSE_LAYER_OFF_DELAY_P1",
|
||||
"shortName": "mod_P1",
|
||||
"title": "Auto mouse layer off delay time in ms (0-6300 ms)"
|
||||
"title": "Auto mouse layer off delay time in ms (value * 100ms)"
|
||||
},
|
||||
{
|
||||
"name": "AUTO_MOUSE_LAYER_OFF_DELAY_M1",
|
||||
"shortName": "mod_M1",
|
||||
"title": "Auto mouse layer off delay time in ms (0-6300 ms)"
|
||||
"title": "Auto mouse layer off delay time in ms (value * 100ms)"
|
||||
},
|
||||
{
|
||||
"name": "ANGLE_L_ADJUSTMENT_P1",
|
||||
"shortName": "agl_P1",
|
||||
"title": "Angle adjustment per 2 degrees for trackballs (left)"
|
||||
"title": "Angle adjustment for trackballs (left)"
|
||||
},
|
||||
{
|
||||
"name": "ANGLE_L_ADJUSTMENT_M1",
|
||||
"shortName": "agl_M1",
|
||||
"title": "Angle adjustment per 2 degrees for trackballs (left)"
|
||||
"title": "Angle adjustment for trackballs (left)"
|
||||
},
|
||||
{
|
||||
"name": "ANGLE_L_ADJUSTMENT_P30",
|
||||
"shortName": "agl_P30",
|
||||
"title": "Angle adjustment per 2 degrees for trackballs (left)"
|
||||
"title": "Angle adjustment for trackballs (left)"
|
||||
},
|
||||
{
|
||||
"name": "ANGLE_L_ADJUSTMENT_M30",
|
||||
"shortName": "agl_M30",
|
||||
"title": "Angle adjustment per 2 degrees for trackballs (left)"
|
||||
"title": "Angle adjustment for trackballs (left)"
|
||||
},
|
||||
{
|
||||
"name": "ANGLE_R_ADJUSTMENT_P1",
|
||||
"shortName": "agr_P1",
|
||||
"title": "Angle adjustment per 2 degrees for trackballs (right)"
|
||||
"title": "Angle adjustment for trackballs (right)"
|
||||
},
|
||||
{
|
||||
"name": "ANGLE_R_ADJUSTMENT_M1",
|
||||
"shortName": "agr_M1",
|
||||
"title": "Angle adjustment per 2 degrees for trackballs (right)"
|
||||
"title": "Angle adjustment for trackballs (right)"
|
||||
},
|
||||
{
|
||||
"name": "ANGLE_R_ADJUSTMENT_P30",
|
||||
"shortName": "agr_P30",
|
||||
"title": "Angle adjustment per 2 degrees for trackballs (right)"
|
||||
"title": "Angle adjustment for trackballs (right)"
|
||||
},
|
||||
{
|
||||
"name": "ANGLE_R_ADJUSTMENT_M30",
|
||||
"shortName": "agr_M30",
|
||||
"title": "Angle adjustment per 2 degrees for trackballs (right)"
|
||||
"title": "Angle adjustment for trackballs (right)"
|
||||
},
|
||||
{
|
||||
"name": "POINTER_SPEED_MAGNIFICATION_P1",
|
||||
"shortName": "psm_P1",
|
||||
"title": "Pointer speed magnification (0.25 * value)"
|
||||
"title": "Pointer speed magnification (value * 0.25)"
|
||||
},
|
||||
{
|
||||
"name": "POINTER_SPEED_MAGNIFICATION_M1",
|
||||
"shortName": "psm_M1",
|
||||
"title": "Pointer speed magnification (0.25 * value)"
|
||||
"title": "Pointer speed magnification (value * 0.25)"
|
||||
},
|
||||
{
|
||||
"name": "INVERT_DRAG_SCROLL_X_P1",
|
||||
@ -93,12 +93,12 @@
|
||||
{
|
||||
"name": "DRAG_SCROLL_SPEED_MAGNIFICATION_P1",
|
||||
"shortName": "dsm_P1",
|
||||
"title": "Drag scroll speed magnification (0.25 * value)"
|
||||
"title": "Drag scroll speed magnification (value * 0.25)"
|
||||
},
|
||||
{
|
||||
"name": "DRAG_SCROLL_SPEED_MAGNIFICATION_M1",
|
||||
"shortName": "dsm_M1",
|
||||
"title": "Drag scroll speed magnification (0.25 * value)"
|
||||
"title": "Drag scroll speed magnification (value * 0.25)"
|
||||
},
|
||||
{
|
||||
"name": "TRACKBALL_LED_OFF_TIMEOUT_P1",
|
||||
|
Loading…
Reference in New Issue
Block a user