pharo icon indicating copy to clipboard operation
pharo copied to clipboard

"cmd-dot interrupt key" is not working on french Windows Azerty keyboard

Open LabordePierre opened this issue 3 months ago • 0 comments

I cannot interrupt with "Ctrl"+"." with my french azerty Windows keyboard.

When I switch to Qwerty (US) mapping this is working using "Ctrl"+"/" physical keys.

I think the problem is here:

SDL_KeyDownEvent>>isUserInterrupt

	^ ((self keysym mod bitAnd: 16r200) = 0) "ignore all if AltGr is pressed"
		and: [(self keysym mod anyMask: 1344) "This mask is for meta/cmd"
			and: [ self keysym sym = $. asInteger ] ]

I create a breakpoint here, self keysym sym is nether equals to $. asInteger.

My config:

  • Pharo 13
  • Windows 11 Pro My keyboard:

French Windows Azerty keyboard

Image

LabordePierre avatar Nov 07 '25 09:11 LabordePierre