Fix the error images for blur and sharpen buttons.

SVN revision: 29997
This commit is contained in:
titan 2007-05-14 21:54:05 +00:00 committed by titan
parent c358e3546f
commit 3cf5b00d0d
1 changed files with 2 additions and 2 deletions

View File

@ -129,12 +129,12 @@ static void add_advanced_edit_tools(Ewl_Widget *c)
{
Ewl_Widget *button;
button = add_button(c, "Blur Image", PACKAGE_DATA_DIR "", image_blur, NULL);
button = add_button(c, "Blur Image", NULL, image_blur, NULL);
ewl_button_image_size_set(EWL_BUTTON(button), 30, 30);
ewl_object_alignment_set(EWL_OBJECT(button), EWL_FLAG_ALIGN_LEFT);
ewl_object_fill_policy_set(EWL_OBJECT(button), EWL_FLAG_FILL_HFILL);
button = add_button(c, "Sharpen Image", PACKAGE_DATA_DIR "", image_sharpen, NULL);
button = add_button(c, "Sharpen Image", NULL, image_sharpen, NULL);
ewl_button_image_size_set(EWL_BUTTON(button), 30, 30);
ewl_object_alignment_set(EWL_OBJECT(button), EWL_FLAG_ALIGN_LEFT);
ewl_object_fill_policy_set(EWL_OBJECT(button), EWL_FLAG_FILL_HFILL);