Skip to content

Commit 32ca410

Browse files
committed
ci: dependence linkerhand-cpp-sdk v2.1.8
1 parent 3f0069a commit 32ca410

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
6969
- name: Setup LinkerHand SDK
7070
run: |
71-
git clone --depth 1 --branch v2.1.7 https://github.com/linker-bot/linkerhand-cpp-sdk.git /tmp/sdk
71+
git clone --depth 1 --branch v2.1.8 https://github.com/linker-bot/linkerhand-cpp-sdk.git /tmp/sdk
7272
cd /tmp/sdk && mkdir build && cd build
7373
cmake .. -DBUILD_EXAMPLES=OFF && make install && ldconfig
7474

src/linker_hand_cpp_ros2/scripts/left_hand_control_gui.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,14 @@ def _add_slider(self, parent, row, column, variable):
317317
)
318318
scale.set(variable.get())
319319
scale.grid(row=0, column=0, sticky="ew")
320-
variable.trace_add("write", lambda *_args, var=variable, widget=scale: widget.set(var.get()))
320+
# variable.trace_add(
321+
# "write",
322+
# lambda *_args, var=variable, widget=scale: widget.set(var.get())
323+
# )
324+
variable.trace_add(
325+
"write",
326+
lambda *_args, var=variable, widget=scale: widget.set(var.get()),
327+
)
321328
spin = ttk.Spinbox(
322329
frame,
323330
from_=0,

0 commit comments

Comments
 (0)