-
Notifications
You must be signed in to change notification settings - Fork 814
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
Fix content width #1910
Merged
Merged
Fix content width #1910
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
29bc5de
fix calculation for scrollbars
willmcgugan 3a92cec
added snapshot
willmcgugan 440bcbf
Merge branch 'composit-region-refactor' into scroll-refactor
willmcgugan 4b21a22
fix for name change
willmcgugan 7eea84e
snapshot
willmcgugan 62e3f2e
merge
willmcgugan 44241bf
fix for textual colors
willmcgugan 3cc2988
remove logs
willmcgugan 10c388b
scrollbar logic
willmcgugan 6a0e665
scroll logic
willmcgugan 4038ed5
remove dead code
willmcgugan 6563a39
snapshot tests
willmcgugan 8a3d785
scrollbar mechanism
willmcgugan 61cc7b0
tidy
willmcgugan 61e5335
demo tweak
willmcgugan 2b9db6f
preset window size
willmcgugan 9ba94e5
no need for repaint
willmcgugan 174b229
Restore repaint
willmcgugan 3fc6313
wait for idle on pause
willmcgugan 81dc5de
colors tweak
willmcgugan cddda7d
remove wait for idle
willmcgugan 33ebc0f
snapshot
willmcgugan a6a0d81
small sleep
willmcgugan 4d9ec32
change stabilizer
willmcgugan dde7564
Merge branch 'main' into fix-content-width
willmcgugan bceffa5
debug tweaks
willmcgugan 8bfad7f
remove debug
willmcgugan 74be89e
remove debug
willmcgugan 695c4a7
snapshot test
willmcgugan fd148f3
docstring
willmcgugan a5fac4a
changelog
willmcgugan 955181b
add pause
willmcgugan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ ColorButtons { | |
} | ||
|
||
ColorButtons > Button { | ||
width: 30; | ||
width: 100%; | ||
} | ||
|
||
ColorsView { | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
|
||
""" | ||
|
||
|
||
import os | ||
|
||
from typing_extensions import Final | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,6 +102,7 @@ Column { | |
height: auto; | ||
min-height: 100vh; | ||
align: center top; | ||
overflow: hidden; | ||
} | ||
|
||
|
||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
Good catch.