-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Mixer update #1828
Mixer update #1828
Conversation
Update coding conventions, mainly spaces in parentheses. Also remove the unused variable Song::PlayPos::m_timeLineUpdate and the unnecessary declaration "friend class mainWindow;".
Update coding conventions, mainly spaces in parentheses. Also add more comments.
Make the mixer fully independent from the GUI Clean up the mixer's contructor
Another possibility is to create a class for the metronome. |
Why are you removing spaces from existing parentheses? It was decided to drop the requirement for spaces, so you no longer have to add them if you don't want to in your own code, but that doesn't meant they need to be removed from existing code. |
The spaces removal was actually because some topics in the coding conventions are not clear, as in issue #1826. Do you prefer to undo the spaces removal? |
An even better idea is to move the code deciding when to play a metronome sample to |
@M374LX the spaces in the parenthesis isn't a big deal here but it makes it harder to see the actual change. We'll need a rebase and some testing prior to merge. Could you simplify the PR a bit and squash the commits back into one? If it's easier, feel free to open a new PR. Thanks for the help on this. 👍 |
@tresf I have plans to check this when possible. |
Thanks kindly for the quick response. I hope you don't mind I'll close this out until the new work is complete. Please open a new PR when you feel it is ready. The |
Separate the metronome from the mixer
Make the mixer fully independent from the GUI
Clean up mixer's constructor