After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 764022 - (totem:4131): Gtk-WARNING **: Negative content width -200 (allocation -200, extents 0x0) while allocating gadget (node highlight, owner GtkScale)
(totem:4131): Gtk-WARNING **: Negative content width -200 (allocation -200, e...
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: .General
3.19.x
Other Linux
: Normal minor
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2016-03-22 10:58 UTC by Torben Andresen
Modified: 2016-03-31 05:53 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Torben Andresen 2016-03-22 10:58:03 UTC
Hi,

i get this errormessag all the time when using Videos. 
(totem:4131): Gtk-WARNING **: Negative content width -200 (allocation -200, extents 0x0) while allocating gadget (node highlight, owner GtkScale)

But i can't see an error on the UI.

Kind regards

Torben
Comment 1 Bastien Nocera 2016-03-22 11:02:55 UTC
The errors aren't generated by totem, and the UI didn't change since 3.18, so reassigning.
Comment 2 Cédric Bellegarde 2016-03-31 05:53:57 UTC
Here I can reproduce this bug with GTK 3.20:

$ python3 test.py 

(test.py:6341): Gtk-WARNING **: Negative content width -13 (allocation -13, extents 0x0) while allocating gadget (node highlight, owner GtkScale)

(test.py:6341): Gtk-WARNING **: Negative content width -13 (allocation -13, extents 0x0) while allocating gadget (node highlight, owner GtkScale)

(test.py:6341): Gtk-WARNING **: Negative content width -13 (allocation -13, extents 0x0) while allocating gadget (node highlight, owner GtkScale)

$ cat test.py 
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk

win = Gtk.Window()
scale = Gtk.Scale()
win.add(scale)
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()