From b4998608f5fbde14c744b6ab8020664300e11f80 Mon Sep 17 00:00:00 2001 From: jucablues Date: Wed, 30 Jan 2008 01:56:55 +0000 Subject: [PATCH] * don't strech buttons on lpe dialog when resizing the dialog * return to "No effects applied" message when one removes an lpe effect --- src/ui/dialog/livepatheffect-editor.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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") ); } -- 2.30.2