-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Image zoom for mobile browser apps #43620
Changes from 26 commits
bd8910c
2bd1a2a
ca69b0f
2e34376
5894906
e30a3bb
2f40b54
ebb0eb4
fec109e
6c6390b
4fa559f
1d5f485
e303843
0bfd329
7345cf8
5029ed3
b16ab81
a5795c4
b2b7ab8
f1c8297
20cb61c
52cd759
8a38e0a
bd0b6f1
d17d1ee
ece63e7
ec7ffbe
b4a70bf
fb32193
531e975
14175f9
7d0bc47
edd2751
8511f5f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1512,6 +1512,11 @@ const styles = (theme: ThemeColors) => | |
height: '100%', | ||
}, | ||
|
||
canvasContainer: { | ||
borderWidth: 1, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What does this border do exactly? Can you point it out to me in a screenshot? Thanks! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Visually this does not affect anything 2024-06-27.12.11.57.movBut this fixes a bug related to lines during zoom 2024-06-26.09.58.47.movThere was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah interesting, that works for me. Just curious though, how does it fix the line bug? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Perhaps due to a lack of performance during zooming, the phone's browser does not have time to re-render the last line of the image But since now the last line is border The bug will be fixed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Neat! Thanks for explaining :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not A Blocker; but maybe worth adding a comment here in the code summarizing this |
||
borderColor: theme.appBG, | ||
}, | ||
|
||
sidebarHeaderContainer: { | ||
flexDirection: 'row', | ||
paddingHorizontal: 20, | ||
|
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.
Is this more accurate?
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.
I think yes
But the pager sounds a little unclear 😅
But I don't mind
I'll update now