Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

touchscreen: Default to putting the scrollbar on the right

For touch targets and right-handed use it makes most sense to
put the scrollbar on the right so your finger doesn't get in
the way of the touchscreen. Sorry left-handed people!

Change-Id: I35cfd8aa3bee6eb638572c9ca592942c53188a50

authored by

Aidan MacDonald and committed by
Solomon Peachy
9f613fd9 9290a484

+8 -1
+8 -1
apps/settings_list.c
··· 480 480 # define MAX_FILES_IN_DIR_STEP 50 481 481 #endif 482 482 483 + #ifdef HAVE_TOUCHSCREEN 484 + /* on touchscreen, it makes more sense to put the scrollbar on the right */ 485 + # define SCROLLBAR_DEFAULT SCROLLBAR_RIGHT 486 + #else 487 + # define SCROLLBAR_DEFAULT SCROLLBAR_LEFT 488 + #endif 489 + 483 490 #ifndef __PCTOOL__ 484 491 485 492 #if LCD_DEPTH > 1 ··· 1190 1197 ID2P(LANG_STATUSBAR_BOTTOM)), 1191 1198 #endif 1192 1199 CHOICE_SETTING(F_THEMESETTING|F_TEMPVAR, scrollbar, 1193 - LANG_SCROLL_BAR, SCROLLBAR_LEFT, "scrollbar","off,left,right", 1200 + LANG_SCROLL_BAR, SCROLLBAR_DEFAULT, "scrollbar","off,left,right", 1194 1201 NULL, 3, ID2P(LANG_OFF), ID2P(LANG_LEFT), ID2P(LANG_RIGHT)), 1195 1202 INT_SETTING(F_THEMESETTING, scrollbar_width, LANG_SCROLLBAR_WIDTH, 6, 1196 1203 "scrollbar width",UNIT_INT, 3, MAX(LCD_WIDTH/10,25), 1,