From 1ecb4317fdbfe6e998a7fd34ae3072b1d0d152f2 Mon Sep 17 00:00:00 2001 From: StarryScythe <tim6542@aol.com> Date: Thu, 20 Mar 2025 12:39:13 +0100 Subject: [PATCH] removed remaining working time from TaskAndTime to put them into the new project https://git-st.inf.tu-dresden.de/ceti/student-projects/ros-2-experiments/universial_robot_moveittaskconstructor-integration --- TaskAndTimeTimJahn.txt | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/TaskAndTimeTimJahn.txt b/TaskAndTimeTimJahn.txt index 0923f05..c15ce69 100644 --- a/TaskAndTimeTimJahn.txt +++ b/TaskAndTimeTimJahn.txt @@ -59,7 +59,7 @@ hours: 27.01.25 2h - 06.03.25 8h - 07.03.25 8h - -09.03.25 4h +09.03.25 4h - //------------------------------------------------------------------------------------------------------ see https://github.com/eclipse-theia/theia/blob/master/doc/Developing.md#prerequisite_native_keymap @@ -280,3 +280,19 @@ Here’s what you can do: make sure that the foreground elements are being added to a layer or group that has the highest stacking context. This ensures they appear on top of other graphical elements. + + +//================================================================== + +function simulateAltC() { +let event = new KeyboardEvent("keydown", { +key: "c", +code: "KeyC", +altKey: true, +bubbles: true +}); +document.dispatchEvent(event); +} + +// Simulation starten +simulateAltC(); \ No newline at end of file -- GitLab