aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.c b/main.c
index ddfc7ab..731b58e 100644
--- a/main.c
+++ b/main.c
@@ -14,9 +14,11 @@ void icon_sizes_init ();
void no_emojis_init ();
void persistent_mnemonics_init ();
void smaller_widgets_init ();
+void treeview_zebra_stripes_init ();
static const InitFunc init_funcs[] =
{
+ treeview_zebra_stripes_init,
smaller_widgets_init,
/* No Emojis must be loaded before Button/Menu Icons since the former
* overrides GtkMenuItem, the superclass of the GtkImageMenuItem class
bgstack15