-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Removing max height of histogram #17045
base: master
Are you sure you want to change the base?
Conversation
also limited. This is not desirable, though, since screens with high resolution make the histogram small and hard to read, particularly when using the scope. This commit fixes this by doing two things: 1) Making functions auto-detect whether they should use height or aspect ratio to manage the container size by checking whether the passed "config_str" variable refers to height or aspect ratio -- Note: this is actually safer anyway, since it was perfectly possible before to pass an AR request to a height function 2) Changing the histogram back to using aspect ratio instead of height
Limited height histogram/waveform is actually some kind of regression as it seems there were no such limitation in past releases. A tall waveform is better for distinction of tones. |
Is there anything else needed from me for this to get added? Would it be useful for me (or would it be useful in the future) to open a ticket to track/document the issue better? |
This pull request has been marked as stale due to inactivity for the last 60 days. It will be automatically closed in 300 days if no update occurs. Please verify it has no conflicts with the master branch and rebase if needed. Mention it now if you need help or give permission to other people to finish your work. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some style issues. Otherwise works on my side. TIA.
@johnlb : Sorry for the long delay before the review! |
@johnlb : Any news about this? Do you want to pursue the work or should I close this PR? |
Hmmm I thought I had pushed the changes you requested a while ago. Maybe it didn't make it to the master repo? I'll sync mine up again and push it after work today. |
Alright I think I got all of the braces. Seems to be working on my side after a re-compile. Let me know if I missed anything! |
When implementing height limits on modules, the histogram container was also limited. This is not desirable, though, since screens with high resolution make the histogram small and hard to read, particularly when using the scope. This commit fixes this by doing two things:
Making functions auto-detect whether they should use height or
aspect ratio to manage the container size by checking whether
the passed "config_str" variable refers to height or aspect ratio
-- Note: this is actually safer anyway, since it was perfectly
possible before to pass an AR request to a height function
Changing the histogram back to using aspect ratio instead of height