summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e30df61)
raw | patch | inline | side by side (parent: e30df61)
author | ishmal <ishmal@users.sourceforge.net> | |
Sat, 25 Mar 2006 02:21:27 +0000 (02:21 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Sat, 25 Mar 2006 02:21:27 +0000 (02:21 +0000) |
src/ui/dialog/tracedialog.cpp | patch | blob | history |
index 3939205b95d7ac6056e86f7c7a7d88ef20681f0f..9f1241eed6bc7fc09f80989f3eba474cac3ff857 100644 (file)
Gtk::Frame sioxFrame;
Gtk::VBox sioxVBox;
Gtk::HBox sioxBox;
- Gtk::RadioButton sioxRadioButton;
+ Gtk::CheckButton sioxButton;
//########## Potrace items
Gtk::VBox potraceBox;
//##### Get the preprocessor settings
/* siox -- performed by Tracer, and before any of the others */
- if (sioxRadioButton.get_active())
+ if (sioxButton.get_active())
tracer.enableSiox(true);
else
tracer.enableSiox(false);
/*#### SIOX ####*/
//# for now, put at the top of the potrace box. something better later
- sioxRadioButton.set_label(_("SIOX subimage selection"));
- sioxBox.pack_start(sioxRadioButton, false, false, MARGIN);
- tips.set_tip(sioxRadioButton, _("Subimage selection with the SIOX algorithm"));
+ sioxButton.set_label(_("SIOX subimage selection"));
+ sioxBox.pack_start(sioxButton, false, false, MARGIN);
+ tips.set_tip(sioxButton, _("Subimage selection with the SIOX algorithm"));
sioxVBox.pack_start(sioxBox, false, false, MARGIN);
sioxFrame.set_label(_("SIOX (W.I.P.)"));
sioxFrame.add(sioxVBox);