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
Hi, on OSX I can't have TextInput copy/paste working. Dunno if it's me but BaseEngine::getClipboardString() and BaseEngine::setClipboardString() are never called...
I tried with ctrl-c ctrl-v keys, also with cmd-c cmd-v keys (with io.ShortcutsUseSuperKey = true)
Using cmd-c or cmd-v erases the input's content and add a 'c' or a 'v'
The text was updated successfully, but these errors were encountered:
A few steps towards a solution. The is_super_down mod to imgui above and this does seem to work. It seems just returning &ofGetWindowPtr()->getClipboardString()[0] returns a variable that goes out of scope. Creating a static instance helps with that, but I'm not sure if it is being released somewhere else after. Another pair of eyes wouldn't hurt.
In general it seems because keyboard inputs are platform specific this is a bit unsupported in imgui.
Hi, on OSX I can't have TextInput copy/paste working. Dunno if it's me but
BaseEngine::getClipboardString()
andBaseEngine::setClipboardString()
are never called...I tried with ctrl-c ctrl-v keys, also with cmd-c cmd-v keys (with io.ShortcutsUseSuperKey = true)
Using cmd-c or cmd-v erases the input's content and add a 'c' or a 'v'
The text was updated successfully, but these errors were encountered: