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?
dep composed on 2018-05-19 16:29 (UTC-0400):
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?
On Debian Stretch, I think it's something from this list:
ii adwaita-icon-theme 3.22.0-1+deb9u1 all default icon theme of GNOME ii gnome-icon-theme 3.12.0-2 all GNOME Desktop icon theme ii gtk-qt-engine-trinity 4:14.0.5~pre8-0debian9.0.0+0 amd64 theme engine using Qt for GTK+ 2.x and Trinity ii gtk-update-icon-cache 3.22.11-1 amd64 icon theme caching utility ii gtk3-tqt-engine-trinity 4:14.0.5~pre7-0debian9.0.0+0 amd64 GTK3 theme engine for TDE ii hicolor-icon-theme 0.15-1 all default fallback theme for FreeDesktop.org icon themes ii libgtk-3-0:amd64 3.22.11-1 amd64 GTK+ graphical user interface library ii libgtk-3-common 3.22.11-1 all common files for the GTK+ graphical user interface library ii libgtk2.0-0:amd64 2.24.31-2 amd64 GTK+ graphical user interface library ii libgtk2.0-common 2.24.31-2 all common files for the GTK+ graphical user interface library
At least in Firefox 60 and SeaMonkey 2.49.3 I have them.
said Felix Miata: | dep composed on 2018-05-19 16:29 (UTC-0400): | > 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? | | On Debian Stretch, I think it's something from this list: | | ii adwaita-icon-theme 3.22.0-1+deb9u1 | all default icon theme of GNOME ii gnome-icon-theme | 3.12.0-2 all GNOME Desktop | icon theme ii gtk-qt-engine-trinity | 4:14.0.5~pre8-0debian9.0.0+0 amd64 theme engine using Qt for | GTK+ 2.x and Trinity ii gtk-update-icon-cache 3.22.11-1 | amd64 icon theme caching utility ii | gtk3-tqt-engine-trinity 4:14.0.5~pre7-0debian9.0.0+0 | amd64 GTK3 theme engine for TDE ii hicolor-icon-theme | 0.15-1 all default fallback | theme for FreeDesktop.org icon themes ii libgtk-3-0:amd64 | 3.22.11-1 amd64 GTK+ graphical user | interface library ii libgtk-3-common 3.22.11-1 | all common files for the GTK+ graphical | user interface library ii libgtk2.0-0:amd64 | 2.24.31-2 amd64 GTK+ graphical user | interface library ii libgtk2.0-common 2.24.31-2 | all common files for the GTK+ graphical | user interface library | | At least in Firefox 60 and SeaMonkey 2.49.3 I have them.
Thanks very much. I just realized that for some reason menus have also disappeared from gthumb, but that might be due to the new version and this mindless desire to make everything into little pictures.
said Felix Miata:
| dep composed on 2018-05-19 16:29 (UTC-0400):
| > . . . | > might anyone here know the package that contains the scrollbars? | | On Debian Stretch, I think it's something from this list:
managed to get those weird disappearing gnome scrollbars, but they're scrollbars and that's better than no scrollbars. looks as if the lack of menus was a conscious decision by the application designers, sad to say.
i wish there were a kde/tde analog for gthumb; closest is digikam, but it insists on doing an indexing thing that simply takes too long -- i'm adding about 100gb of pictures to the pile every month -- and that leaves nothing except gthumb (i need to add captions and copyright/credit stuff to exif before i ship 'em out). if a kde-trinity equivalent exists, i'd be delighted to hear about it!
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; */ }
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!