Hernán Morales Durand

Results 144 issues of 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...

Type: Cleanup

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.

bug

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...

bug
debugger

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...

enhancement
question

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 |...

bug
enhancement

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...

bug
question

## 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...