Browse Source

Ploopy Trackball Mini: only define DPI options as needed (#16160)

pull/16877/head
alaviss 2 years ago
committed by GitHub
parent
commit
0d67eec5e2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 3 deletions
  1. +10
    -3
      keyboards/ploopyco/trackball_mini/trackball_mini.c

+ 10
- 3
keyboards/ploopyco/trackball_mini/trackball_mini.c View File

@ -37,9 +37,16 @@
# define OPT_SCALE 1 // Multiplier for wheel
#endif
#define PLOOPY_DPI_OPTIONS \
{ 375, 750, 1375 }
#define PLOOPY_DPI_DEFAULT 2
#ifndef PLOOPY_DPI_OPTIONS
# define PLOOPY_DPI_OPTIONS \
{ 375, 750, 1375 }
# ifndef PLOOPY_DPI_DEFAULT
# define PLOOPY_DPI_DEFAULT 1
# endif
#endif
#ifndef PLOOPY_DPI_DEFAULT
# define PLOOPY_DPI_DEFAULT 0
#endif
#ifndef PLOOPY_DRAGSCROLL_DPI
# define PLOOPY_DRAGSCROLL_DPI 375 // Fixed-DPI Drag Scroll


Loading…
Cancel
Save