GNOME Bugzilla – Bug 142956
ComboBoxEntryText displays text column twice in popup
Last modified: 2004-12-22 21:47:04 UTC
Here's a test case to reproduce it: ------------------------------------------- #include <gtkmm/main.h> #include <gtkmm/window.h> #include <gtkmm/comboboxentrytext.h> int main(int argc, char **argv) { Gtk::Main kit(argc, argv); Gtk::ComboBoxEntryText cbet; cbet.append_text("Mother"); cbet.append_text("Mary"); cbet.append_text("Joseph"); Gtk::Window window; window.add(cbet); window.show_all(); Gtk::Main::run(window); } -------------------------------------------
Created attachment 27929 [details] [review] Proposed fix
Thanks. Applied. Please patch the Changelog in future.