File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed
Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 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 /
Original file line number Diff line number Diff 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"\n Skipped { 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 "
You can’t perform that action at this time.
0 commit comments