mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 02:34:06 -04:00
Specialize the scrollbars for each platform
This commit is contained in:
parent
4d4de02e82
commit
d6ea54ff08
@ -2561,7 +2561,13 @@ void qtcDefaultSettings(Options *opts)
|
||||
opts->shadeMenubarOnlyWhenActive=false;
|
||||
opts->thin=THIN_BUTTONS;
|
||||
opts->tbarBtns=TBTN_STANDARD;
|
||||
#ifdef _WIN32
|
||||
opts->scrollbarType=SCROLLBAR_WINDOWS;
|
||||
#elif defined __APPLE__
|
||||
opts->scrollbarType=SCROLLBAR_NONE;
|
||||
#else
|
||||
opts->scrollbarType=SCROLLBAR_KDE;
|
||||
#endif
|
||||
opts->buttonEffect=EFFECT_SHADOW;
|
||||
opts->focus=FOCUS_GLOW;
|
||||
opts->lvButton=false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user