-
-
Notifications
You must be signed in to change notification settings - Fork 685
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
[widget Audit] toga.DetailedList #2025
Merged
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
8a3fbf1
Update docs and core API for DetailedList.
freakboy3742 796dbb2
Add changenotes.
freakboy3742 9a4e69f
Update docs index entry.
freakboy3742 e6e20c7
Update core tests for DetailedList.
freakboy3742 186aff3
Update examples to use new ListSource APIs.
freakboy3742 545a280
Deleting attributes is a notifiable change.
freakboy3742 1f260f5
Modify core API to use primary/secondary actions.
freakboy3742 6f49004
Cocoa DetailedList at 100%.
freakboy3742 6ec8eb8
iOS DetailedList to 100% coverage.
freakboy3742 ced26bb
Silence a test cleanup warning when running iOS tests non-slow.
freakboy3742 6484af2
More iOS test cleanups.
freakboy3742 b7fa33d
Clean up GTK DetailedList implementation
freakboy3742 dea9eaf
GTK DetailedList at 100% coverage.
freakboy3742 50b07dd
Add the ability to get a coverage report without running the full tes…
freakboy3742 6597a16
Ensure widgets have been made visible; Fixes #2026.
freakboy3742 cd02bfd
Merge branch 'audit-tree' into audit-detailedlist
freakboy3742 b3ac24a
Ensure GTK progressbar gets coverage.
freakboy3742 3dec76a
Use explicit calls to tableView methods to avoid ambiguous names, and…
freakboy3742 f92d9f8
Merge branch 'audit-tree' into audit-detailedlist
freakboy3742 230d3bb
Merge branch 'audit-tree' into audit-detailedlist
freakboy3742 0fe227b
Merge branch 'audit-tree' into audit-detailedlist
freakboy3742 12dc04e
Merge branch 'audit-tree' into audit-detailedlist
freakboy3742 812fe80
Merge branch 'main' into audit-detailedlist
freakboy3742 52be479
Documentation cleanups
mhsmith 9d0a282
Winforms: support icons in Tables, but in first column only
mhsmith 449a17a
WinForms DetailedList at 100%, but primary, secondary and refresh act…
mhsmith 1dd7fea
In examples/table, make data structure clearer
mhsmith 4d26f01
Remove workarounds for rubicon-java JNI reference issues
mhsmith b1b57d2
Android DetailedList at 100%
mhsmith ba31939
Make simulated Android swipes more realistic
mhsmith 2b4ff7a
Rationalize usage of MainActivity.singletonThis
mhsmith 09cb2a5
Move nested classes to module level
mhsmith 4ff988c
Clarify DetailedList accessor docs
mhsmith 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
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.
This made the test unreliable in
--slow
mode, because the handler and the test function are running in separate asyncio tasks and there's no guarantee of which one will finish awaiting first.