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
In 'YoutubeKeyboardTextCommandFactory', I just have to put the space button in the middle of the line array, it will a few reduce the number of commands necessary to access the space button.
Just replace :
{ new KeyNode(' '), null, null, null, null, null, null, null }
with
{ null, null, null, new KeyNode(' '), null, null, null, null }
Then check that the unit tests still run
The text was updated successfully, but these errors were encountered:
In 'YoutubeKeyboardTextCommandFactory', I just have to put the space button in the middle of the line array, it will a few reduce the number of commands necessary to access the space button.
Just replace :
{ new KeyNode(' '), null, null, null, null, null, null, null }
with
{ null, null, null, new KeyNode(' '), null, null, null, null }
Then check that the unit tests still run
The text was updated successfully, but these errors were encountered: