From faad4c385e0080878faed88dce7c4dc9c6dd5ee5 Mon Sep 17 00:00:00 2001 From: NY Date: Thu, 5 Jun 2025 17:01:41 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E5=AD=97=E7=AC=A6=E4=B8=B2=E5=B7=AE?= =?UTF-8?q?=E5=BC=82+1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts.db | Bin 32768 -> 32768 bytes scripts/比较两个字符串的差异.ui.py | 9 --------- 2 files changed, 9 deletions(-) diff --git a/scripts.db b/scripts.db index 4647c5f4d47ca2f9d712135044be51245751bac6..c649d2e152ef19c3003518b3168114f86c9e430e 100644 GIT binary patch delta 30 lcmZo@U}|V!njp;>I#I@%F?3^sb{!+vWW_r5&713d83B?P37h}` delta 30 lcmZo@U}|V!njp;>GEv5vF=S(cb{!+#37G%@ diff --git a/scripts/比较两个字符串的差异.ui.py b/scripts/比较两个字符串的差异.ui.py index d2a2ade..8f6e936 100644 --- a/scripts/比较两个字符串的差异.ui.py +++ b/scripts/比较两个字符串的差异.ui.py @@ -1,6 +1,5 @@ import tkinter as tk from tkinter import ttk -import pyperclip from tkinter import messagebox def create_ui(parent, run_callback): @@ -51,14 +50,6 @@ def create_ui(parent, run_callback): output_scroll.grid(row=5, column=2, sticky=(tk.N, tk.S)) output_text["yscrollcommand"] = output_scroll.set - def copy_output(event): - output = output_text.get("1.0", tk.END).strip() - if output: - pyperclip.copy(output) - messagebox.showinfo("提示", "输出已复制到剪贴板") - - output_text.bind("", copy_output) - def run(): input1 = input_entry1.get("1.0", tk.END).strip() input2 = input_entry2.get("1.0", tk.END).strip()