forked from teamnwah/openmw-tes3coop
Get only text from clipboard (bug #4025)
This commit is contained in:
parent
e0bb9c089b
commit
65d05ee1cd
1 changed files with 2 additions and 6 deletions
|
@ -1983,12 +1983,8 @@ namespace MWGui
|
|||
char* text=0;
|
||||
text = SDL_GetClipboardText();
|
||||
if (text)
|
||||
{
|
||||
// MyGUI's clipboard might still have color information, to retain that information, only set the new text
|
||||
// if it actually changed (clipboard inserted by an external application)
|
||||
if (MyGUI::TextIterator::getOnlyText(_data) != text)
|
||||
_data = text;
|
||||
}
|
||||
_data = MyGUI::TextIterator::toTagsString(text);
|
||||
|
||||
SDL_free(text);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue