Blame SOURCES/motifzone_1660.patch
|
|
59a63e |
From e5c51cda449ea3544fddcdb84c6809757477035b Mon Sep 17 00:00:00 2001
|
|
|
59a63e |
From: Oleksiy Chernyavskyy <ochern@ics.com>
|
|
|
59a63e |
Date: Tue, 22 Aug 2017 03:27:36 +0300
|
|
|
59a63e |
Subject: [PATCH] Fixed bug 1660
|
|
|
59a63e |
|
|
|
59a63e |
---
|
|
|
59a63e |
lib/Xm/TextF.c | 4 ++--
|
|
|
59a63e |
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
59a63e |
|
|
|
59a63e |
diff --git a/lib/Xm/TextF.c b/lib/Xm/TextF.c
|
|
|
59a63e |
index 3323d2bd..f66076da 100644
|
|
|
59a63e |
--- a/lib/Xm/TextF.c
|
|
|
59a63e |
+++ b/lib/Xm/TextF.c
|
|
|
59a63e |
@@ -1768,8 +1768,8 @@ PaintCursor(XmTextFieldWidget tf)
|
|
|
59a63e |
}
|
|
|
59a63e |
if (cursor_width > 0 && cursor_height > 0)
|
|
|
59a63e |
XCopyArea(XtDisplay(tf), tf->text.ibeam_off, XtWindow(tf),
|
|
|
59a63e |
- tf->text.save_gc, 0, 0, cursor_width,
|
|
|
59a63e |
- cursor_height, x, y);
|
|
|
59a63e |
+ tf->text.save_gc, src_x, 0, cursor_width,
|
|
|
59a63e |
+ cursor_height, x, y);
|
|
|
59a63e |
}
|
|
|
59a63e |
}
|
|
|
59a63e |
}
|
|
|
59a63e |
--
|
|
|
59a63e |
2.13.5
|
|
|
59a63e |
|