mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-29 13:20:35 +00:00
Get only text from clipboard (bug #4025)
This commit is contained in:
parent
e0bb9c089b
commit
65d05ee1cd
@ -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…
x
Reference in New Issue
Block a user