From 30b066e0fc6ac44cfdfc1eb69e1f5743b7112ec4 Mon Sep 17 00:00:00 2001 From: malc Date: Sat, 2 Mar 2013 20:12:31 +0400 Subject: [PATCH] Differentiate launch gotos --- link.c | 1 + 1 file changed, 1 insertion(+) diff --git a/link.c b/link.c index abcef7f..7801b8b 100644 --- a/link.c +++ b/link.c @@ -2066,6 +2066,7 @@ static void highlightlinks (struct page *page, int xoff, int yoff) switch (link->dest.kind) { case FZ_LINK_GOTO: glColor3ub (255, 0, 0); break; case FZ_LINK_URI: glColor3ub (0, 0, 255); break; + case FZ_LINK_LAUNCH: glColor3ub (0, 255, 0); break; default: glColor3ub (0, 0, 0); break; } -- 2.11.4.GIT