From e3b640b574a2ba6b47cb2105a4b9a2d0e9ca5f2c Mon Sep 17 00:00:00 2001 From: "Richard Horton (hortonr6)" Date: Wed, 15 Nov 2017 17:51:41 +0000 Subject: [PATCH] Opens link but not on click The link opens immediately at the moment which is better than not at all but it still won't open on click --- Client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Client.py b/Client.py index 4921ec4..e3a6fe0 100644 --- a/Client.py +++ b/Client.py @@ -33,7 +33,7 @@ def receiveMessage(i): searchLink = message hyperlinkObj = tkHLM.HyperlinkManager(chatHistory) chatHistory.configure(state="normal") - chatHistory.insert(tk.END, "Click here", hyperlinkObj.add()) #broken line + chatHistory.insert(tk.END, "Click here", hyperlinkObj.add(openLink(url))) #broken line chatHistory.insert(tk.END, "\n") chatHistory.configure(state="disabled") thisSocket.send("Received".encode())