GNOME Bugzilla – Bug 764022
(totem:4131): Gtk-WARNING **: Negative content width -200 (allocation -200, extents 0x0) while allocating gadget (node highlight, owner GtkScale)
Last modified: 2016-03-31 05:53:57 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
The errors aren't generated by totem, and the UI didn't change since 3.18, so reassigning.
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()