summaryrefslogtreecommitdiff
path: root/dw
diff options
context:
space:
mode:
Diffstat (limited to 'dw')
-rw-r--r--dw/image.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/dw/image.cc b/dw/image.cc
index b5d6082b..e200e5b9 100644
--- a/dw/image.cc
+++ b/dw/image.cc
@@ -275,7 +275,8 @@ bool Image::motionNotifyImpl (core::EventMotion *event)
if (newLink != currLink) {
currLink = newLink;
clicking = false;
- setCursor(newLink == -1 ? core::style::CURSOR_DEFAULT :
+ /* \todo Using MAP/AREA styles would probably be best */
+ setCursor(newLink == -1 ? getStyle()->cursor :
core::style::CURSOR_POINTER);
(void) emitLinkEnter (newLink, -1, -1, -1);
}