aboutsummaryrefslogtreecommitdiff
path: root/meson.build
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 /meson.build
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 'meson.build')
-rw-r--r--meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index b1417d0..4592d18 100644
--- a/meson.build
+++ b/meson.build
@@ -56,7 +56,8 @@ shared_module ('gtk3-classic-module',
'patches/icon-sizes.c',
'patches/no-emojis.c',
'patches/persistent-mnemonics.c',
- 'patches/smaller-widgets.c'
+ 'patches/smaller-widgets.c',
+ 'patches/treeview-zebra-stripes.c'
],
include_directories: [ include_dir ],
dependencies: [ gtk_dep, gtk_unix_print_dep ],
bgstack15