From 168510994b28730da9bbca38f0b507aa51f45437 Mon Sep 17 00:00:00 2001 From: titan Date: Thu, 10 Apr 2008 00:46:29 +0000 Subject: [PATCH] get rid of highlighting SVN revision: 34231 --- src/bin/ephoto_albums.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/bin/ephoto_albums.c b/src/bin/ephoto_albums.c index 8388c44..df0caa6 100755 --- a/src/bin/ephoto_albums.c +++ b/src/bin/ephoto_albums.c @@ -22,6 +22,12 @@ show_albums(Ewl_Widget *c) populate_albums(NULL, NULL, NULL); } +static unsigned int +highlight_cb(void *data, unsigned int row) +{ + return 0; +} + static Ewl_Widget * add_atree(Ewl_Widget *c) { @@ -32,6 +38,7 @@ add_atree(Ewl_Widget *c) model = ewl_model_new(); ewl_model_data_fetch_set(model, album_data_fetch); ewl_model_data_count_set(model, album_data_count); + ewl_model_data_highlight_set(model, highlight_cb); view = ewl_view_new(); ewl_view_widget_fetch_set(view, album_view_new);