commit f3f4bd312d8a007309bc212e53e5652df0308c8e
parent d23e76d43f763e1132b07808690b32892b923e60
Author: Michael Rasmussen <mir@datanom.net>
Date: Fri, 9 Nov 2018 17:08:56 +0100
Fix wrong cursor type
Signed-off-by: Michael Rasmussen <mir@datanom.net>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/plugins/litehtml_viewer/lh_widget.cpp b/src/plugins/litehtml_viewer/lh_widget.cpp
@@ -298,7 +298,7 @@ void lh_widget::update_cursor()
GdkCursorType cursType = GDK_ARROW;
if(m_cursor == _t("pointer"))
{
- cursType = GDK_HAND1;
+ cursType = GDK_HAND2;
}
if(cursType == GDK_ARROW)
{