Activity log for bug #1864537

Date Who What changed Old value New value Message
2020-02-24 19:46:28 hilaire bug added bug
2020-02-25 18:37:06 hilaire tags user-interface pharo8 user-interface
2020-02-25 18:41:55 hilaire tags pharo8 user-interface pharo8 script user-interface
2020-02-25 18:42:04 hilaire description When the user wants to edit a script and when clicking on a script there is this error. The method methodsIn: contains a lot of broken code now: #wrapper and #defaultPane are now unknown messages :( methodsIn: composite composite wrapper title: 'Methods' translated; show: [ :wrapper | wrapper fastList display: [ :aClass | aClass methods collect: [ :m | m asRingDefinition ]]; format: [ :aCompiledMethod | aCompiledMethod selector asString ] ]. composite wrapper title: 'Script data' translated; show: [ :wrapper | wrapper fastList display: [ :aClass | aClass class methods collect: [ :m | m asRingDefinition ]]; format: [ :aCompiledMethod | aCompiledMethod selector asString ] ]. composite updateOn: MethodModified from: [ SystemAnnouncer uniqueInstance ]; updateOn: MethodAdded from: [ SystemAnnouncer uniqueInstance ]. composite onChangeOfPort: #activePresentation act: [ :presentation | (presentation pane port: #activePresentation) value ifNotNil: [ :activePresentation | ((browser paneNamed: #methods) port: #selection) value: (activePresentation defaultPane port: #selection) value ] ]. When the user wants to edit a script and when clicking on a script there is this error. The method DrGScriptBrowser>>methodsIn: contains a lot of broken code now: #wrapper and #defaultPane are now unknown messages :( methodsIn: composite  composite wrapper title: 'Methods' translated;   show: [ :wrapper |    wrapper fastList     display: [ :aClass | aClass methods collect: [ :m | m asRingDefinition ]];     format: [ :aCompiledMethod | aCompiledMethod selector asString ] ].  composite wrapper title: 'Script data' translated;   show: [ :wrapper |    wrapper fastList     display: [ :aClass | aClass class methods collect: [ :m | m asRingDefinition ]];     format: [ :aCompiledMethod | aCompiledMethod selector asString ] ].  composite   updateOn: MethodModified from: [ SystemAnnouncer uniqueInstance ];   updateOn: MethodAdded from: [ SystemAnnouncer uniqueInstance ].  composite onChangeOfPort: #activePresentation act: [ :presentation |   (presentation pane port: #activePresentation) value ifNotNil: [ :activePresentation |    ((browser paneNamed: #methods) port: #selection) value: (activePresentation defaultPane port: #selection) value ] ].
2022-09-08 20:13:26 hilaire drgeo: status New Won't Fix