How to remove the text selection cursor? Problem: when you hover on text that has the property disableSelection, the cursor changes to this (2 in a row) and you need the 1st enter image description here

    1 answer 1

    In the css style of the desired item:

    cursor: default; 
    • And if during dragging the cursor changes, then where the cursor: default; to register? - user284245