summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3111595)
raw | patch | inline | side by side (parent: 3111595)
author | Johan Engelen <goejendaagh@zonnet.nl> | |
Tue, 18 May 2010 21:49:29 +0000 (23:49 +0200) | ||
committer | Johan Engelen <goejendaagh@zonnet.nl> | |
Tue, 18 May 2010 21:49:29 +0000 (23:49 +0200) |
src/ui/dialog/livepatheffect-editor.cpp | patch | blob | history | |
src/ui/dialog/livepatheffect-editor.h | patch | blob | history |
index dec437be938b23277b6d13f872f324ebf21863af..62ed4e63996da17a5bd47a436754afae036f4a28 100644 (file)
/*####################
* Callback functions
*/
-static void lpeeditor_selection_changed (Inkscape::Selection * selection, gpointer data)
+void lpeeditor_selection_changed (Inkscape::Selection * selection, gpointer data)
{
LivePathEffectEditor *lpeeditor = static_cast<LivePathEffectEditor *>(data);
+ lpeeditor->lpe_list_locked = false;
lpeeditor->onSelectionChanged(selection);
}
selection_modified_connection.disconnect();
}
+ lpe_list_locked = false;
current_desktop = desktop;
if (desktop) {
Inkscape::Selection *selection = sp_desktop_selection(desktop);
sp_document_done(doc, SP_VERB_DIALOG_LIVE_PATH_EFFECT,
_("Create and apply path effect"));
+ lpe_list_locked = false;
onSelectionChanged(sel);
}
}
index 1152e8bb8ba1652570598d0e13c2f3ca5051646d..50e9486444c05efefd54ba1b4f9f3c1d7e48a6e0 100644 (file)
SPLPEItem * current_lpeitem;
+ friend void lpeeditor_selection_changed (Inkscape::Selection * selection, gpointer data);
+
LivePathEffectEditor(LivePathEffectEditor const &d);
LivePathEffectEditor& operator=(LivePathEffectEditor const &d);
};