diff options
Diffstat (limited to 'shell/e-shell-content.c')
-rw-r--r-- | shell/e-shell-content.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/shell/e-shell-content.c b/shell/e-shell-content.c index 4c02ba3709..aaa4bb47fa 100644 --- a/shell/e-shell-content.c +++ b/shell/e-shell-content.c @@ -1045,6 +1045,19 @@ e_shell_content_set_filter_visible (EShellContent *shell_content, } void +e_shell_content_add_filter_separator_before (EShellContent *shell_content, + gint action_value) +{ + EActionComboBox *combo_box; + + g_return_if_fail (E_IS_SHELL_CONTENT (shell_content)); + + combo_box = E_ACTION_COMBO_BOX (shell_content->priv->filter_combo_box); + + e_action_combo_box_add_separator_before (combo_box, action_value); +} + +void e_shell_content_add_filter_separator_after (EShellContent *shell_content, gint action_value) { |