aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorGordon Norman Squash <gordsqsh@protonmail.com>2024-09-29 18:43:44 -0400
committerGordon Norman Squash <gordsqsh@protonmail.com>2024-09-29 18:43:44 -0400
commit59e1d8332530d70c0ed9fabd01b896b83efc72b5 (patch)
treebc9dcec3c5b0ed4295eeff378856779889dca1a9 /main.c
parentLicense changed to LGPL-2 to match GTK license (diff)
downloadgtk3-classic-module-59e1d8332530d70c0ed9fabd01b896b83efc72b5.tar.gz
gtk3-classic-module-59e1d8332530d70c0ed9fabd01b896b83efc72b5.tar.bz2
gtk3-classic-module-59e1d8332530d70c0ed9fabd01b896b83efc72b5.zip
Draw tree view rows in alternating colours ('zebra stripes')
NOTE: Please see the README and the file `data/zebra-stripes.css` for information on how to actually activate the zebra stripes.
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