diff options
| author | John Smith <john.smith7545@yahoo.com> | 2012-08-07 08:45:50 +0000 |
|---|---|---|
| committer | John Smith <john.smith7545@yahoo.com> | 2012-08-07 08:45:50 +0000 |
| commit | d2e06a8ebec38b7819efc7dacccd720b477aaadc (patch) | |
| tree | 26f27a72083fcc5bd619be07e7f466b0c078d48c /src/ui/dialog/livepatheffect-editor.cpp | |
| parent | Use Gtk::StyleContext in OCAL dialog (diff) | |
| download | inkscape-d2e06a8ebec38b7819efc7dacccd720b477aaadc.tar.gz inkscape-d2e06a8ebec38b7819efc7dacccd720b477aaadc.zip | |
Fix for 427514 : Filter effects dialog data mirroring
(bzr r11596)
Diffstat (limited to 'src/ui/dialog/livepatheffect-editor.cpp')
| -rw-r--r-- | src/ui/dialog/livepatheffect-editor.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/dialog/livepatheffect-editor.cpp b/src/ui/dialog/livepatheffect-editor.cpp index ba7ece901..7ecb6d5cd 100644 --- a/src/ui/dialog/livepatheffect-editor.cpp +++ b/src/ui/dialog/livepatheffect-editor.cpp @@ -80,6 +80,7 @@ static void lpeeditor_selection_modified (Inkscape::Selection * selection, guint LivePathEffectEditor::LivePathEffectEditor() : UI::Widget::Panel("", "/dialogs/livepatheffect", SP_VERB_DIALOG_LIVE_PATH_EFFECT), + deskTrack(), lpe_list_locked(false), effectwidget(NULL), status_label("", Gtk::ALIGN_CENTER), @@ -174,6 +175,9 @@ LivePathEffectEditor::LivePathEffectEditor() button_up.signal_clicked().connect(sigc::mem_fun(*this, &LivePathEffectEditor::onUp)); button_down.signal_clicked().connect(sigc::mem_fun(*this, &LivePathEffectEditor::onDown)); + desktopChangeConn = deskTrack.connectDesktopChanged( sigc::mem_fun(*this, &LivePathEffectEditor::setDesktop) ); + deskTrack.connect(GTK_WIDGET(gobj())); + show_all_children(); } |
