fix: keep touchpad controls visible at larger display zoom - #6
Merged
Conversation
The controls column used a fixed 300dp width and the connection drawer a fixed 430dp width, sized for the middle display-zoom step. At larger zoom (higher density) the fixed dp widths outgrew the screen and the bottom button row was clipped. Clamp both panels to a fraction of the real screen width and wrap the controls column in a ScrollView so no zoom setting can clip controls off screen. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
문제
화면 확대(디스플레이 크기) 설정을 2단계보다 크게 하면 터치패드 화면의 오른쪽 버튼 컬럼(고정 300dp)과 연결 패널(고정 430dp)이 화면보다 커져서 마지막 버튼 줄이 잘렸다.
수정
검증
:app:compileDebugKotlin,:app:testDebugUnitTest통과🤖 Generated with Claude Code