Skip to content
Snippets Groups Projects
Commit 1ecb4317 authored by StarryScythe's avatar StarryScythe
Browse files

removed remaining working time from TaskAndTime to put them into the new...

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
parent de1922d6
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment