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

commits at source.squeak.org commits at source.squeak.org
Sat Nov 27 20:56:16 UTC 2021


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

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

Name: Kernel-ct.1426
Author: ct
Time: 27 November 2021, 9:55:50.345431 pm
UUID: 87b3532b-6976-6148-9a45-9e100f36b095
Ancestors: Kernel-ct.1425

Removes the preference #automaticPlatformSettings as requested.

See: http://lists.squeakfoundation.org/pipermail/squeak-dev/2021-November/217134.html

=============== Diff against Kernel-ct.1425 ===============

Item was changed:
  ----- Method: EventSensor class>>startUp: (in category 'system startup') -----
  startUp: resuming
  
+ 	resuming ifTrue: [
- 	(resuming and: [Preferences automaticPlatformSettings]) 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