A well-known and used MUI custom class (TextEditor.mcc) which provides application programmers a textedit gadget. It supports features like word wrapping, soft styles (bold, italic, underline), a spell checking interface as well as an AREXX interface for scripting.
GNU Lesser General Public License v2.1
19
stars
4
forks
source link
Cannot get() MUIA_TextEditor_RedoAvailable from call hook #25
Trying to get() MUIA_TextEditor_RedoAvailable doesn't work from a call hook. Here's how to reproduce it:
Enter a char
Click the button to undo the operation
Note the debug output: AppMsgFunc2 correctly receives 1 in the x argument because redo is now available. However, when querying MUIA_TextEditor_RedoAvailable using get() at the same time, y still receives 0 but it should be 1 now.
Trying to get()
MUIA_TextEditor_RedoAvailable
doesn't work from a call hook. Here's how to reproduce it:AppMsgFunc2
correctly receives1
in thex
argument because redo is now available. However, when queryingMUIA_TextEditor_RedoAvailable
usingget()
at the same time,y
still receives 0 but it should be 1 now.Here is the demo code: