popup: core: Use linear scaling for small terminal sizes. #1018
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This commit is a step towards solving #1005 especially the first
2 points. This changes the fixed scaling fraction of 3/4 to one that
is linear in the range 80 - 100 column width:
available size increases from 80 to 100. This increases the range of
sizes for which the popup is rendered properly.
The values 80 and 100 are given by:
The popup height has a fixed scaling factor of 2/3.
Tests added
80 < Width < 100
![](https://user-images.githubusercontent.com/64144419/116774514-aa033100-aa7a-11eb-8f2b-7f61cfbc482a.png)
![](https://user-images.githubusercontent.com/64144419/116774497-8a6c0880-aa7a-11eb-8ddd-2b73a0fb0952.png)
![](https://user-images.githubusercontent.com/64144419/116774469-6a3c4980-aa7a-11eb-87c0-54f6b3bd8c7e.png)
Width = 80
Width > 100 (Full screen)