We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There should be a way to move a nested class from one parent to another parent, e.g. using drag and drop.
The text was updated successfully, but these errors were encountered:
I'll give up for now. We need to look at this together or it's a waste of time. Leftovers:
ModuleSystemViewHelper canPaste
ModuleSystemViewHelper class>>canPaste ^cutSpec isNil not ModuleSystemViewHelper class>>cut: aName from: aSpec cutSpecName := aName. cutSpec := aSpec removeClassAt: aName ModuleSystemViewHelper class>>pasteInto: aSpec aSpec addClass: cutSpec name: cutSpecName. cutSpec := nil. cutSpecName := nil
SpecificationTest>>testAddClassName |spec added| added := ClassSpecification new. spec := ClassSpecification new. spec addClass: added name: 'added'. self assert: (spec classAt: 'added') equals: added. SpecificationTest>>testRemoveClassAt |spec added| added := ClassSpecification new. spec := ClassSpecification new. spec addClass: added name: 'added'. self assert: (spec classAt: 'added') equals: added. self assert: (spec removeClassAt: 'added') equals: added. self assert: (spec classAt: 'added' ifAbsent: nil) equals: nil.
"ModuleSystemButtonBar" [:memberSpecification | { #text -> 'Cut'. #icon -> UiSilkIcons cutIcon. #clicked -> [[ ModuleSystemViewHelper cut: memberSpecification selector from: memberSpecification parent. ViEventNotifier trigger: #ModuleSystemModuleView]]}] [:memberSpecification | { #text -> 'Paste Into'. #icon -> UiSilkIcons pastePlainIcon. #clicked -> [[ ModuleSystemViewHelper pasteInto: memberSpecification. ViEventNotifier trigger: #ModuleSystemModuleView]]}]
Sorry, something went wrong.
No branches or pull requests
There should be a way to move a nested class from one parent to another parent, e.g. using drag and drop.
The text was updated successfully, but these errors were encountered: