Skip to content
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

Adding an artifact from "empty" editor does not update the input #299

Open
marceltaeumel opened this issue Apr 23, 2019 · 0 comments
Open
Labels

Comments

@marceltaeumel
Copy link
Contributor

There an be artifact editors for new objects such as protocols and methods. Such editors have nil as their current object:

addArtifact

	| editor |
	editor := ViMethodEditor new
		context: self theClass;
		object: nil.
		
	self artifactCreated: editor.
addProtocol

	| editor |
	editor := ViProtocolEditor new
		context: self theClass theNonMetaClass;
		object: nil.
		
	self artifactCreated: editor.

In those editors, saving means creating. However, that creation is not propagated to the surrounding artifact list, which can make editors disappear after a list update.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant