summaryrefslogtreecommitdiff
path: root/src/corelib/x11/fpg_x11.pas
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2010-09-22 23:12:12 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2010-09-23 16:24:42 +0200
commit109a2714ca1846e368f9a83f49d21e028ec950ea (patch)
tree50e65ad5bdbb560fa5b705bec2a754f833864e91 /src/corelib/x11/fpg_x11.pas
parent839de6506d1f7002db3ea045f7a562b1d45d685b (diff)
downloadfpGUI-109a2714ca1846e368f9a83f49d21e028ec950ea.tar.xz
X11 correctly set mouse cursor for mcDefault and mcArrow
Diffstat (limited to 'src/corelib/x11/fpg_x11.pas')
-rw-r--r--src/corelib/x11/fpg_x11.pas2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/corelib/x11/fpg_x11.pas b/src/corelib/x11/fpg_x11.pas
index e92caea4..cc360b2d 100644
--- a/src/corelib/x11/fpg_x11.pas
+++ b/src/corelib/x11/fpg_x11.pas
@@ -2272,6 +2272,8 @@ begin
end;
case FMouseCursor of
+ mcDefault: shape := XC_left_ptr;
+ mcArrow: shape := XC_arrow;
mcSizeEW: shape := XC_sb_h_double_arrow;
mcSizeNS: shape := XC_sb_v_double_arrow;
mcIBeam: shape := XC_xterm;