Hernán Morales Durand
Hernán Morales Durand
Class implementations are almost identical (the remaining differences are due to `StMethodNameEditorPresenter` being a refactored version of `SycMethodNameEditorPresenter`) - SycMethodNameEditorPresenter from SystemCommands-RefactoringSupport. - StMethodNameEditorPresenter from Refactoring-UI. **Proposal** There are 19...
As discussed in #15507, deprecate explicitRequirement.
Consider the following usage scenario. I want to get the index of an element in my list: ```smalltalk | somePrimes list | somePrimes := Array streamContents: [ :str | |...
During loading from a baseline with the following spec: ```smalltalk spec baseline: 'OSSubprocess' with: [ spec repository: 'github://marianopeck/OSSubprocess:master/repository' ]; ```
Fix StFileOrFolder open should take the input as a possible selection, as reported by @Ducasse in #808.
The new "Create method" option in the debugger seems to have some UX problems. I know it's easy to turn it off, but still the layout takes a lot of...
This issue is related to #635. Try to create a `StInspectorEditCommand` ```smalltalk StInspectorCommand >#initialize super initialize. 'no editable' traceCr. editable := false. sortable := false ``` If you open an...
A method should be overridden to get one step closer to opening a new settings browser window, specific to an application settings. We should add: ```smalltalk StSettingsTree >> #nodeList |...
The problem is that `SpMultipleSelectionMode`is comparing FileReference's using identity. When using ==, you're checking if two `FileReference` objects are the same object in memory. For FileReferences, this will often return...
## Problem In the New Settings Browser, each time a presenter (representing a specific setting node) is added to the layout, its entire container is redrawn, affecting performance while displaying...