[Pkg] The Trunk: Tools-mt.929.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Jan 6 10:04:09 UTC 2020


Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.929.mcz

==================== Summary ====================

Name: Tools-mt.929
Author: mt
Time: 6 January 2020, 11:04:06.99743 am
UUID: 471886c1-f1a6-164d-95ed-c0847e2a2b4e
Ancestors: Tools-cmm.928

Fixes text-scroll behavior for debuggers in too-small windows with too-big fonts. :-) Note that this is just a workaround for the 5.3 release.

=============== Diff against Tools-cmm.928 ===============

Item was changed:
  ----- Method: Debugger>>contentsSelection (in category 'code pane') -----
  contentsSelection
+ 	"Reverse the selection (i.e., point block and mark block) to put the text cursor at the beginning to ensure visibility of the beginning in small windows."
+ 	
+ 	self flag: #tofix. "mt: See http://forum.world.st/The-Inbox-Morphic-cmm-1615-mcz-td5109271.html and http://forum.world.st/stepping-in-small-panes-td5109239.html."
+ 	^ self pcRange in: [:interval |
+ 		interval last + 1 to: interval first - 1]!
- 
- 	^ self pcRange!



More information about the Packages mailing list