better cutleft : wider and cleans up

This commit is contained in:
2026-02-08 15:50:19 +01:00
parent 6ace0c3b03
commit 11b63ec402
2 changed files with 18 additions and 5 deletions
+1 -2
View File
@@ -312,7 +312,7 @@ class PDFPreviewer:
# Move the temp output file to replace the original
shutil.move(self.final_file, self.pdf_path)
print(f"Original moved to {backup_path}, new file saved at {self.pdf_path}")
# print(f"Original moved to {backup_path}, new file saved at {self.pdf_path}")
except Exception as e:
messagebox.showerror("Error", f"Failed to move/replace files: {e}")
@@ -445,4 +445,3 @@ if __name__ == "__main__":
root = tk.Tk()
app = PDFPreviewer(root, pdf_file_path)
root.mainloop()