aboutsummaryrefslogtreecommitdiff
path: root/src/stylesheet.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2018-10-21 18:34:56 +0200
committerThomas White <taw@bitwiz.me.uk>2018-10-21 18:34:56 +0200
commitb79dad7a05ae97dffb3f5fd9ab48ff8ffbbf6ea7 (patch)
treeb2cd9a57caf15cad4cfbd137e8d28cacce314b3d /src/stylesheet.c
parent2236dea3df2e651a75788334c439f1ad312709f4 (diff)
Full order of precedence for finding stylesheets
Diffstat (limited to 'src/stylesheet.c')
-rw-r--r--src/stylesheet.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stylesheet.c b/src/stylesheet.c
index 020107e..ed84905 100644
--- a/src/stylesheet.c
+++ b/src/stylesheet.c
@@ -49,6 +49,8 @@ Stylesheet *stylesheet_load(GFile *file)
char *everything;
gsize len;
+ printf("Trying stylesheet '%s'\n", g_file_get_uri(file));
+
ss = calloc(1, sizeof(Stylesheet));
if ( ss == NULL ) return NULL;