Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize space bar #1

Open
Rayanox opened this issue Jun 27, 2019 · 1 comment
Open

Optimize space bar #1

Rayanox opened this issue Jun 27, 2019 · 1 comment
Labels
enhancement New feature or request
Milestone

Comments

@Rayanox
Copy link
Collaborator

Rayanox commented Jun 27, 2019

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

@Rayanox Rayanox added the enhancement New feature or request label Jun 27, 2019
@Rayanox
Copy link
Collaborator Author

Rayanox commented Jun 27, 2019

In fact, the test have to be adapted

@Rayanox Rayanox added this to the Backlog milestone Jul 8, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant