@fileverse-dev/fortune-core 1.2.93 → 1.2.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/events/keyboard.js +1 -1
- package/lib/events/keyboard.js +1 -1
- package/package.json +1 -1
package/es/events/keyboard.js
CHANGED
|
@@ -404,7 +404,7 @@ export function handleGlobalKeyDown(ctx, cellInput, fxInput, e, cache, handleUnd
|
|
|
404
404
|
if ((e.metaKey || e.ctrlKey) && e.shiftKey && e.code === "Semicolon") {
|
|
405
405
|
fillTime(ctx);
|
|
406
406
|
}
|
|
407
|
-
if ((e.metaKey || e.ctrlKey) && e.code === "KeyR") {
|
|
407
|
+
if ((e.metaKey || e.ctrlKey) && !e.shiftKey && e.code === "KeyR") {
|
|
408
408
|
fillRightData(ctx);
|
|
409
409
|
}
|
|
410
410
|
if ((e.metaKey || e.ctrlKey) && e.code === "KeyD") {
|
package/lib/events/keyboard.js
CHANGED
|
@@ -414,7 +414,7 @@ function handleGlobalKeyDown(ctx, cellInput, fxInput, e, cache, handleUndo, hand
|
|
|
414
414
|
if ((e.metaKey || e.ctrlKey) && e.shiftKey && e.code === "Semicolon") {
|
|
415
415
|
(0, _selection.fillTime)(ctx);
|
|
416
416
|
}
|
|
417
|
-
if ((e.metaKey || e.ctrlKey) && e.code === "KeyR") {
|
|
417
|
+
if ((e.metaKey || e.ctrlKey) && !e.shiftKey && e.code === "KeyR") {
|
|
418
418
|
(0, _selection.fillRightData)(ctx);
|
|
419
419
|
}
|
|
420
420
|
if ((e.metaKey || e.ctrlKey) && e.code === "KeyD") {
|