Skip to content

Commit 6daf5a8

Browse files
committed
Fix: remove emojis
1 parent 9a14a29 commit 6daf5a8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PWGCF/Femto/Macros/cutculatorGui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,11 @@ def _build_ui(self):
128128
top = tk.Frame(self, bg=BG, pady=10, padx=18)
129129
top.pack(fill="x")
130130

131-
tk.Label(top, text="CutCulator", font=FONT_TITLE, bg=BG, fg=ACCENT).pack(side="left")
131+
tk.Label(top, text="CutCulator", font=FONT_TITLE, bg=BG, fg=ACCENT).pack(side="left")
132132

133133
btn_frame = tk.Frame(top, bg=BG)
134134
btn_frame.pack(side="right")
135-
self._btn_open = self._make_button(btn_frame, "📂 Open ROOT file", self._open_file_dialog, ACCENT)
135+
self._btn_open = self._make_button(btn_frame, "Open ROOT file", self._open_file_dialog, ACCENT)
136136
self._btn_open.pack(side="left", padx=4)
137137

138138
# ── file + histogram selector bar ──

0 commit comments

Comments
 (0)