[squeak-dev] The Trunk: Kernel-ct.1423.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Nov 25 10:34:53 UTC 2021


Christoph Thiede uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-ct.1423.mcz

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

Name: Kernel-ct.1423
Author: ct
Time: 25 November 2021, 11:34:19.428424 am
UUID: ec2f69bf-0aac-4747-8cc5-5778a713051f
Ancestors: Kernel-mt.1422

Honors Preferences automaticPlatformSettings in EventSensor startUp:.

=============== Diff against Kernel-mt.1422 ===============

Item was changed:
  ----- Method: EventSensor class>>startUp: (in category 'system startup') -----
  startUp: resuming
+ 
+ 	(resuming and: [Preferences automaticPlatformSettings]) ifTrue: [
- 	
- 	resuming ifTrue: [
  		Smalltalk platformName = 'Mac OS'
  			ifTrue: [
  				self mapAltKeysToOptionKeys: false.
  				self mapControlKeysToCommandKeys: false]
  			ifFalse: [
  				self mapAltKeysToOptionKeys: true.
  				self mapControlKeysToCommandKeys: true].
  		self installVirtualKeyTable ].
  
  	self default startUp.!



More information about the Squeak-dev mailing list