said Nick Koretsky: | On Sat, 19 May 2018 16:29:41 -0400 | | dep dep@drippingwithirony.com wrote: | > i used only a few gnome apps, the most indespensible of which id | > gthumb. i just opened it for the first time since the upgrade and | > found navigation impossible: there are no scrollbars! | > | > might anyone here know the package that contains the scrollbars? | | stupid gtk3 default change | add export GTK_OVERLAY_SCROLLING=0 somewhere (.xsession, DE startup | scripts, /etc/environment.. ) | create a file ~/.config/gtk-3.0/gtk.css with following: | | .undershoot.top, .undershoot.right, .undershoot.bottom, .undershoot.left | { background-image: none; } | | * { | -GtkScrollbar-has-backward-stepper: true; | -GtkScrollbar-has-forward-stepper: true; | /* -GtkScrollbar-has-secondary-backward-stepper: false; */ | /* -GtkScrollbar-has-secondary-forward-stepper: false; */ | }
Many thanks!