Code

r15379@tres: ted | 2007-05-09 19:13:37 -0700
[inkscape.git] / src / extension / implementation / script.cpp
index 2e0dd004e237c26dbe925adea34317a43c2252bc..b5e995b65af13c935caf17599207586dc622064e 100644 (file)
@@ -789,17 +789,6 @@ Script::effect(Inkscape::Extension::Effect *module, Inkscape::UI::View::View *do
         return;
     }
 
-    gchar * dlgmessage = g_strdup_printf(_("The effect '%s' is working on your document.  Please wait."), module->get_name());
-
-    Gtk::MessageDialog working(dlgmessage,
-                               false, // use markup
-                               Gtk::MESSAGE_INFO,
-                               Gtk::BUTTONS_CANCEL,
-                               true); // modal
-    g_free(dlgmessage);
-    working.show();
-
-
     gchar *tmpname;
     // FIXME: process the GError instead of passing NULL
     gint tempfd_in = g_file_open_tmp("ink_ext_XXXXXX", &tmpname, NULL);
@@ -890,7 +879,6 @@ Script::effect(Inkscape::Extension::Effect *module, Inkscape::UI::View::View *do
         sp_namedview_update_layers_from_document(desktop);
     }
 
-    working.hide();
     return;
 }