trinity-users@lists.pearsoncomputing.net

Message: previous - next
Month: May 2018

Re: [trinity-users] but now no scrollbars in gnome apps

From: Nick Koretsky <nick_koretsky@...>
Date: Sun, 20 May 2018 03:03:16 +0300
On Sat, 19 May 2018 16:29:41 -0400
dep <dep@...> 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; */
}





-- 
  Nick Koretsky (nick.koretsky@...)