From e5ed5bce80f815a0a5a2130a1cb4104eadb60a86 Mon Sep 17 00:00:00 2001 From: Kalle Olavi Niemitalo Date: Thu, 1 Jun 2006 21:23:31 +0300 Subject: [PATCH] bookmarks: CONFIG_SMALL elides explanations of why Move failed. (I added them in commit 3090e3a25077a19a7b2d5361543e28ca19cc7b84.) --- src/bookmarks/dialogs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bookmarks/dialogs.c b/src/bookmarks/dialogs.c index 5cf3ff597..850ac0001 100644 --- a/src/bookmarks/dialogs.c +++ b/src/bookmarks/dialogs.c @@ -455,7 +455,9 @@ push_move_button(struct dialog_data *dlg_data, write_bookmarks(); #endif display_widget(dlg_data, widget_data); /* the hierbox */ - } else if (result & MOVE_BOOKMARK_CYCLE) { + } +#ifndef CONFIG_SMALL + else if (result & MOVE_BOOKMARK_CYCLE) { /* If the user also selected other bookmarks, then * they have already been moved, and this box doesn't * appear. */ @@ -476,6 +478,7 @@ push_move_button(struct dialog_data *dlg_data, "have the stuff moved to, and press the \"Move\" " "button.")); } +#endif /* ndef CONFIG_SMALL */ return EVENT_PROCESSED; }