mirror of
https://github.com/NickeManarin/ScreenToGif.git
synced 2026-04-25 23:25:52 +03:00
[GH-ISSUE #1407] [Bug] Value fields are hidden by the percentage dropdown in the Resize tool #1034
Labels
No labels
copy cats
duplicated
future feature
pull-request
⬜ Accepted
⬜ Completed
⬜ Help Wanted 💪
⬜ In Progress
⬜ Missing Details
⬜ Pending
⬜ Waiting For Answer ⏳
🆕 feature preview
🔷 Bug 🐛
🔷 Out Of Scope
🔷 Out Of Scope
🔷 Question
🔷Enhancement
🔷Enhancement
🔷Invalid / External
🔷Knowledge Base
🔷Won't Fix
🕑 High
🕑 High
🕑 High
🕕 Medium
🕙 Low
🕛 Critical
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ScreenToGif#1034
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @BenPyton on GitHub (Aug 3, 2025).
Original GitHub issue: https://github.com/NickeManarin/ScreenToGif/issues/1407
Originally assigned to: @NickeManarin on GitHub.
Describe the bug
The percentage value field in the "Resize" tool is completely hidden.
The dropdown menu to select between Pixel or Percentage is overlapping with the value field.
While the field for piwel value is partially visible, we are still able to click in it to change de value, but when in percentage mode, the value is completely hidden, and thus preventing modifying the value.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The dropdown should never overlap the field value. The value field should be moved accordingly to the width of the dropdown.
Screenshots
Desktop (please complete the following information):
@fz0000 commented on GitHub (Aug 5, 2025):
This is by design — WPF ensures uniform column widths across all rows in a Grid layout.
In your example, if the content in row 5, column 1 is wide due to the long label
Mise à l'échelle Qualité:, then column 1 in all rows will expand to match that width.That’s why the items might appear overlapped.
The easiest workaround is to replace the text of the long label (
DPI:orQuality:) with a shorter string in the translation file.However, besides French, several other languages have the same issue, so we need help from the translators to update those as well.
See the language list below:
cs, nl, fr, hu, jp, ko, pt-PT, es-AR, ruMaybe another solution is to use independent Grid Rows. Each row becomes its own Grid, and the entire layout is stacked vertically.
Well, hopefully the author has a better idea. 😁
@BenPyton commented on GitHub (Aug 5, 2025):
Maybe, other possible fixes would be to set the last column as the filler instead of the middle one?
Or maybe placing the
Pixel/Percentdropdown on a separate line? (It is not really useful to have it on both lines, since modifying one of them will modify both anyway)@fz0000 commented on GitHub (Aug 5, 2025):
Sounds like a good idea.
Is this better? (Sorry for my poor design sense 😅 )
The layout still seems a bit odd... How do other similar tools handle this?
@BenPyton commented on GitHub (Aug 14, 2025):
This is in Photoshop CS6:
Even though the dropdowns change for both width and height, they are indeed on the same line.
However, they only uses the
%symbol for the percentage, so maybe this would be also a possible solution? 🤔@NickeManarin commented on GitHub (Aug 16, 2025):
I did this: