evaera / Cmdr

Extensible command console for Roblox developers
https://eryn.io/Cmdr/
MIT License
363 stars 104 forks source link

Update Window.lua #332

Closed lucasnielsen closed 3 weeks ago

lucasnielsen commented 1 month ago

This simple addition fixes an issue that causes the keyboard to completely break on mobile devices. Streamable link

The script before would cause :CaptureFocus() everytime the TextBox would lose focus, creating an infinite loop of the keyboard opening and closing extremely quickly (as shown in the video link above).

My fix to this is adding a check if the user is on mobile or not. If they are on mobile, it will stop Entry.TextBox:CaptureFocus() from being ran.

Declarations: