You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The clipboard function that is documented lists clipboard.is_empty, which is used to verify that there is a value stored in the clipboard. But regardless of if text is stored in the clipboard or not, it always returns 0.
There's a minor error in FuncExpression.cpp on line 738.
It should be _result = 1;
case IDENT_CLIPBOARD:
{
switch(Id[1])
{
case IDENT_EMPTY:
Text::Clipboard::Empty();
break;
case IDENT_IS_EMPTY:
case IDENT_LEN:
case IDENT_LENGTH:
{
_result = 1;
The clipboard function that is documented lists clipboard.is_empty, which is used to verify that there is a value stored in the clipboard. But regardless of if text is stored in the clipboard or not, it always returns 0.
The text was updated successfully, but these errors were encountered: