Skip to content

Commit 2dd126f

Browse files
author
marcelkb
committed
message fix
1 parent b84b27a commit 2dd126f

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,13 @@
11
.idea/
2+
/build/M3U Copy Tool/Analysis-00.toc
3+
/build/M3U Copy Tool/base_library.zip
4+
/build/M3U Copy Tool/EXE-00.toc
5+
/dist/M3U Copy Tool.exe
6+
/build/M3U Copy Tool/M3U Copy Tool.pkg
7+
/M3U Copy Tool.spec
8+
/build/M3U Copy Tool/PKG-00.toc
9+
/build/M3U Copy Tool/PYZ-00.pyz
10+
/build/M3U Copy Tool/PYZ-00.toc
11+
/build/M3U Copy Tool/warn-M3U Copy Tool.txt
12+
/build/M3U Copy Tool/xref-M3U Copy Tool.html
13+
build/

m3u_exporter.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def setup_ui(self):
6464
self.files_listbox.bind("<Button-3>", self.show_context_menu)
6565
# For Mac users (Command+Click or Control+Click)
6666
self.files_listbox.bind("<Button-2>", self.show_context_menu)
67-
self.files_listbox.bind("<Control-Button-1>", self.show_context_menu)
6867

6968
btn_frame = tk.Frame(source_frame)
7069
btn_frame.pack(fill=tk.X, pady=(5, 0))
@@ -191,12 +190,12 @@ def on_drop(self, event):
191190
# Update export button state
192191
self.check_ready_to_export()
193192

194-
# Show result message
193+
# Show result message if something was skipped
195194
if added_count > 0:
196195
msg = f"Added {added_count} playlist(s)"
197196
if skipped_count > 0:
198197
msg += f"\nSkipped {skipped_count} file(s)"
199-
messagebox.showinfo("Success", msg)
198+
messagebox.showinfo("Success", msg)
200199
elif skipped_count > 0:
201200
messagebox.showwarning("Warning",
202201
f"No valid M3U/M3U8 files were added.\n"

0 commit comments

Comments
 (0)