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 165055 - checkboxes with inconsistent statuses do not show properly in all themes but "Default"
checkboxes with inconsistent statuses do not show properly in all themes but ...
Status: RESOLVED DUPLICATE of bug 164809
Product: gtk+
Classification: Platform
Component: Backend: Win32
2.6.x
Other Windows
: Normal normal
: ---
Assigned To: gtk-win32 maintainers
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2005-01-24 04:21 UTC by Guillaume Proux
Modified: 2005-01-24 04:32 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Guillaume Proux 2005-01-24 04:22:00 UTC
This is a problem on win32 that I discovered using pygtk bindings.

I used the latest stable pygtk (2.4.1) and the latest gtk+ (2.6.1rc2)

-- cut here --
import gtk

x=gtk.MessageDialog(buttons=gtk.BUTTONS_OK)
y=gtk.CheckButton()
y.set_inconsistent(True)
x.vbox.add(y)
y=gtk.CheckButton()
y.set_active(True)
x.vbox.add(y)
y=gtk.CheckButton()
y.set_active(False)
x.vbox.add(y)
x.show_all()
x.run()
-- cut here --

I would really prefer to use wimp for my shipping application.
Comment 1 Owen Taylor 2005-01-24 04:32:52 UTC
I'm not sure why this was refiled, please put any additional comments
on the original bug.

*** This bug has been marked as a duplicate of 164809 ***