summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2016-01-29 10:12:58 +0000
committerjabiertxof <info@marker.es>2016-01-29 10:12:58 +0000
commit61eff0365783b13f583255231684f76c653ce3d9 (patch)
treeb7db054e540c9f541286e34a15ebb231b0c1b54a /src
parentFix a bug in eraser spray mode when no overlaps is disabled (diff)
downloadinkscape-61eff0365783b13f583255231684f76c653ce3d9.tar.gz
inkscape-61eff0365783b13f583255231684f76c653ce3d9.zip
Add an advert to fillet chamfer users that the coming version in 'pointwise' branch is not compatible. I hope soon I can commit the code
(bzr r14623)
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-fillet-chamfer.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/live_effects/lpe-fillet-chamfer.cpp b/src/live_effects/lpe-fillet-chamfer.cpp
index 209805da3..afa405b59 100644
--- a/src/live_effects/lpe-fillet-chamfer.cpp
+++ b/src/live_effects/lpe-fillet-chamfer.cpp
@@ -99,6 +99,14 @@ Gtk::Widget *LPEFilletChamfer::newWidget()
vbox->set_border_width(5);
vbox->set_homogeneous(false);
vbox->set_spacing(2);
+ Gtk::HBox *advertaising = Gtk::manage(new Gtk::HBox(true, 0));
+ Gtk::Button *advert = Gtk::manage(new Gtk::Button(Glib::ustring(_("IMPORTANT! New version soon..."))));
+ advertaising->pack_start(*advert, true, true, 2);
+ vbox->pack_start(*advertaising, true, true, 2);
+ Gtk::HBox *advertaising2 = Gtk::manage(new Gtk::HBox(true, 0));
+ Gtk::Button *advert2 = Gtk::manage(new Gtk::Button(Glib::ustring(_("Not compatible. Convert works to paths."))));
+ advertaising2->pack_start(*advert2, true, true, 2);
+ vbox->pack_start(*advertaising2, true, true, 2);
std::vector<Parameter *>::iterator it = param_vector.begin();
while (it != param_vector.end()) {
if ((*it)->widget_is_visible) {