Redefining key combos again to support underlying changes in GT.
This commit is contained in:
parent
ed87c46402
commit
d4577a6489
@ -10,9 +10,8 @@ Class {
|
|||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
MiniDocs class >> altKeys [
|
MiniDocs class >> altKeys [
|
||||||
^ BlAlternativeCombination new
|
^ BlAlternativeCombination new
|
||||||
with: (BlSingleKeyCombination key:BlKeyboardKey altLeft);
|
key: (BlSingleKeyCombination key:BlKeyboardKey altLeft)
|
||||||
with: (BlSingleKeyCombination key:BlKeyboardKey altRight);
|
or: (BlSingleKeyCombination key:BlKeyboardKey altRight)
|
||||||
yourself.
|
|
||||||
]
|
]
|
||||||
|
|
||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
@ -88,9 +87,8 @@ MiniDocs class >> keyboardShortcutsRemapping [
|
|||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
MiniDocs class >> shiftKeys [
|
MiniDocs class >> shiftKeys [
|
||||||
^ BlAlternativeCombination new
|
^ BlAlternativeCombination new
|
||||||
with: (BlSingleKeyCombination key:BlKeyboardKey shiftLeft);
|
key: (BlSingleKeyCombination key:BlKeyboardKey shiftLeft)
|
||||||
with: (BlSingleKeyCombination key:BlKeyboardKey shiftRight);
|
or: (BlSingleKeyCombination key:BlKeyboardKey shiftRight)
|
||||||
yourself.
|
|
||||||
]
|
]
|
||||||
|
|
||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
|
Loading…
Reference in New Issue
Block a user