diff --git a/src/filemanager/find.c b/src/filemanager/find.c
index b28f8f7..5e3deba 100644
a
|
b
|
find_parameters (char **start_dir, char **pattern, char **content) |
574 | 574 | widget_disable (content_regexp_cbox->widget, disable); |
575 | 575 | add_widget (find_dlg, content_regexp_cbox); |
576 | 576 | |
| 577 | content_use_cbox = |
| 578 | check_new (cbox_position--, FIND_X / 2 + 1, options.content_use, content_use_label); |
| 579 | add_widget (find_dlg, content_use_cbox); |
| 580 | |
577 | 581 | cbox_position = FIND_Y - 6; |
578 | 582 | |
579 | 583 | skip_hidden_cbox = check_new (cbox_position--, 3, options.skip_hidden, file_skip_hidden_label); |
… |
… |
find_parameters (char **start_dir, char **pattern, char **content) |
594 | 598 | recursively_cbox = check_new (cbox_position, 3, options.find_recurs, file_recurs_label); |
595 | 599 | add_widget (find_dlg, recursively_cbox); |
596 | 600 | |
597 | | /* This checkbox is located in the second column */ |
598 | | content_use_cbox = |
599 | | check_new (cbox_position, FIND_X / 2 + 1, options.content_use, content_use_label); |
600 | | add_widget (find_dlg, content_use_cbox); |
601 | | |
602 | 601 | in_with = |
603 | 602 | input_new (6, FIND_X / 2 + 1, input_get_default_colors (), FIND_X / 2 - 4, INPUT_LAST_TEXT, |
604 | 603 | MC_HISTORY_SHARED_SEARCH, INPUT_COMPLETE_DEFAULT); |