Ticket #1354: TextView.cpp.diff

File TextView.cpp.diff, 321 bytes (added by ksmith, 17 years ago)

Proposed fix to this issue. It simply doesn't allow a user to copy text from a password field.

  • TextView.cpp

     
    790790            break;
    791791           
    792792        case B_COPY:
    793             Copy(be_clipboard);
     793            if (!this->IsTypingHidden())
     794                Copy(be_clipboard);
    794795            break;
    795796           
    796797        case B_PASTE: