Skip to content

Commit 3bfef04

Browse files
committed
Add initial files and release zips
1 parent 3c5a0f0 commit 3bfef04

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

pinegen.zip

23.8 MB
Binary file not shown.

treegen.zip

23.9 MB
Binary file not shown.

treegen/treegen_gui.exe

-960 Bytes
Binary file not shown.

treegen/treegen_gui.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,10 @@ def generate():
279279

280280
label_widget = ttk.Label(row, text=label)
281281
label_widget.pack(side="left", padx=(0, 5))
282-
label_widget.bind("<Enter>", lambda e, l=label: status.set(tooltips.get(l, "")))
283-
label_widget.bind("<Leave>", lambda e: status.set(""))
282+
283+
# 👇 Move the tooltip to the full slider row instead of just the label
284+
row.bind("<Enter>", lambda e, l=label: status.set(tooltips.get(l, "")))
285+
row.bind("<Leave>", lambda e: status.set(""))
284286

285287
val_label = ttk.Label(row, text=f"{var.get():.2f}")
286288
val_label.pack(side="right")

0 commit comments

Comments
 (0)