From 3cf5b00d0d261a1bc87e7b3511b4f2d198c1150b Mon Sep 17 00:00:00 2001 From: titan Date: Mon, 14 May 2007 21:54:05 +0000 Subject: [PATCH] Fix the error images for blur and sharpen buttons. SVN revision: 29997 --- src/bin/ephoto_edit_view.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/ephoto_edit_view.c b/src/bin/ephoto_edit_view.c index cac3e76..da44931 100644 --- a/src/bin/ephoto_edit_view.c +++ b/src/bin/ephoto_edit_view.c @@ -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);