From 950a52b612cbf39239cfe6c6db6c9e84922828f0 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 7 Apr 2014 16:16:47 +0200 Subject: [PATCH] Another round of debug output for synctex. Signed-off-by: Sebastian Ramacher --- dbus-interface.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dbus-interface.c b/dbus-interface.c index 42be64c..f628bf5 100644 --- a/dbus-interface.c +++ b/dbus-interface.c @@ -172,6 +172,7 @@ highlight_rects(zathura_t* zathura, unsigned int page, girara_list_t* rect_list = rectangles[page]; if (rect_list == NULL || girara_list_size(rect_list) == 0) { + girara_debug("No rectangles for the given page. Jumping to page %u.", page); page_set(zathura, page); return; } @@ -198,7 +199,7 @@ highlight_rects(zathura_t* zathura, unsigned int page, zathura_page_t* doc_page = zathura_document_get_page(zathura->document, page); zathura_rectangle_t* rect = girara_list_nth(rect_list, 0); if (rect == NULL) { - girara_debug("List of rects is broken."); + girara_debug("List of rectangles is broken. Jumping to page %u.", page); page_set(zathura, page); return; } @@ -216,6 +217,7 @@ highlight_rects(zathura_t* zathura, unsigned int page, } /* move to position */ + girara_debug("Jumping to page %u position (%f, %f).", page, pos_x, pos_y); zathura_jumplist_add(zathura); position_set(zathura, pos_x, pos_y); zathura_jumplist_add(zathura);