-
Notifications
You must be signed in to change notification settings - Fork 40
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
Implement some explicitRequirements on Morphic host #686
Comments
This works but needs a test: s := BlSpace new.
s useMorphicHost.
self deny: s isBorderless.
s borderless: true.
s show.
self assert: s isBorderless. |
tinchodias
added a commit
that referenced
this issue
Feb 5, 2025
For a test: s := BlSpace new.
s useMorphicHost.
s show.
"wait it is opened"
self deny: s isFullscreen.
s fullscreen: true.
self deny: s isFullscreen. |
All the space properties must be tested before/after show, because the execution changes considerably either if the hostspace exists or doesn't exist. |
Another test to add: s := BlSpace new.
s useMorphicHost.
s show.
"wait it is opened"
self assert: s isResizable.
s resizable: false.
self deny: s isResizable.
s resizable: true.
self assert: s isResizable. |
tinchodias
added a commit
that referenced
this issue
Feb 5, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This has no test, and doesn't work:
The text was updated successfully, but these errors were encountered: