Bug 17 - cursor movement behaves odd
: cursor movement behaves odd
Status: CONFIRMED
Product: SWI-Prolog
Classification: Unclassified
Component: xpce
: 5.10.x
: PC Linux
: Highest enhancement
Assigned To: Jan Wielemaker
:
:
:
  Show dependency treegraph
 
Reported: 2011-12-06 15:45 CET by Christian
Modified: 2011-12-06 15:45 CET (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Christian 2011-12-06 15:45:45 CET
Hi there, after getting to know the xpce functions i recognized a strange
behavior.
When using a text_item with a string, the cursor moves unexpected.
I tried 'muss nicht sein' as a string. Moving the cursor in front of the 'i'
and using the arrow up/down behaves like a arrow right.
I tried the same on 'n' and it won't move.

test code:

t4:-new(D, dialog('Demo Window')),
    new(T,text_item(hallo)),
    send(D,append, T),
    send(T,value,'muss nicht sein'),
    send(D,open).

is this a bug or a feature?