Index: trunk/src/plugins/query/dlg_search.c =================================================================== --- trunk/src/plugins/query/dlg_search.c (revision 10339) +++ trunk/src/plugins/query/dlg_search.c (revision 10340) @@ -585,6 +585,7 @@ rnd_hid_dad_buttons_t clbtn[] = {{"Close", 0}, {NULL, 0}}; search_ctx_t *ctx = calloc(sizeof(search_ctx_t), 1); int row, col; + static const char *help_follow = "When ticked: the scope of dialog box follows sheet switches"; gdl_append(&searches, ctx, link); @@ -606,11 +607,14 @@ RND_DAD_COMPFLAG(ctx->dlg, RND_HATF_TIGHT); RND_DAD_LABEL(ctx->dlg, ""); ctx->wscope_label = RND_DAD_CURRENT(ctx->dlg); + RND_DAD_HELP(ctx->dlg, "Searches done from this dialog box will search in this scope (sheet or project)"); RND_DAD_BEGIN_HBOX(ctx->dlg); RND_DAD_COMPFLAG(ctx->dlg, RND_HATF_TIGHT); RND_DAD_LABEL(ctx->dlg, "Follow:"); + RND_DAD_HELP(ctx->dlg, help_follow); RND_DAD_BOOL(ctx->dlg); ctx->wfollow = RND_DAD_CURRENT(ctx->dlg); + RND_DAD_HELP(ctx->dlg, help_follow); RND_DAD_DEFAULT_NUM(ctx->dlg, 0); RND_DAD_CHANGE_CB(ctx->dlg, search_follow_chg_cb); RND_DAD_END(ctx->dlg);