X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fui%2Fdialog%2Flivepatheffect-editor.cpp;h=29ec03a8ca6294ed7cd6278b6e5d98adda534e32;hb=ad2113df738be4dac5ccb58cedbedd74b045a0ab;hp=d03edcd8ee1725507b64e744a402038c138bf010;hpb=3ae3dd4eb0191cc986a035c790b8b97e6c6e4ee4;p=inkscape.git diff --git a/src/ui/dialog/livepatheffect-editor.cpp b/src/ui/dialog/livepatheffect-editor.cpp index d03edcd8e..29ec03a8c 100644 --- a/src/ui/dialog/livepatheffect-editor.cpp +++ b/src/ui/dialog/livepatheffect-editor.cpp @@ -76,8 +76,8 @@ LivePathEffectEditor::LivePathEffectEditor() effectcontrol_vbox.pack_end(button_remove, true, true); effectcontrol_frame.add(effectcontrol_vbox); - contents->pack_start(effectapplication_frame, true, true); - contents->pack_start(effectcontrol_frame, true, true); + contents->pack_start(effectapplication_frame, false, false); + contents->pack_start(effectcontrol_frame, false, false); // connect callback functions to buttons button_apply.signal_clicked().connect(sigc::mem_fun(*this, &LivePathEffectEditor::onApply)); @@ -265,6 +265,8 @@ LivePathEffectEditor::onRemove() SPItem *item = sel->singleItem(); if ( item && SP_IS_SHAPE(item) ) { sp_shape_remove_path_effect(SP_SHAPE(item)); + showText(_("No effect applied")); + button_remove.set_sensitive(false); sp_document_done ( sp_desktop_document (current_desktop), SP_VERB_DIALOG_LIVE_PATH_EFFECT, _("Remove path effect") ); }