diff --git a/htdocs/admin/agenda_other.php b/htdocs/admin/agenda_other.php
index dd03d477c6f..ee9253057e8 100644
--- a/htdocs/admin/agenda_other.php
+++ b/htdocs/admin/agenda_other.php
@@ -373,11 +373,12 @@ $formactions->select_type_actions($conf->global->AGENDA_DEFAULT_FILTER_TYPE, "AG
print ''."\n";
// AGENDA_DEFAULT_FILTER_STATUS
+// TODO Remove to use the default generic feature
print '
'."\n";
print '| '.$langs->trans("AGENDA_DEFAULT_FILTER_STATUS").' | '."\n";
print ' | '."\n";
print ''."\n";
-$formactions->form_select_status_action('agenda', $conf->global->AGENDA_DEFAULT_FILTER_STATUS, 1, 'AGENDA_DEFAULT_FILTER_STATUS', 1, 2);
+$formactions->form_select_status_action('agenda', $conf->global->AGENDA_DEFAULT_FILTER_STATUS, 1, 'AGENDA_DEFAULT_FILTER_STATUS', 1, 2, 'minwidth100');
print ' |
'."\n";
// AGENDA_DEFAULT_VIEW
diff --git a/htdocs/core/lib/agenda.lib.php b/htdocs/core/lib/agenda.lib.php
index 5ac0982a3a0..bdb0a50e4e6 100644
--- a/htdocs/core/lib/agenda.lib.php
+++ b/htdocs/core/lib/agenda.lib.php
@@ -142,7 +142,7 @@ function print_actions_filter($form, $canedit, $status, $year, $month, $day, $sh
print '';
print $langs->trans("Status");
print ' | ';
- $formactions->form_select_status_action('formaction',$status,1,'status',1,2);
+ $formactions->form_select_status_action('formaction', $status, 1, 'status', 1, 2, 'minwidth100');
print ' | ';
}