Fix error when adding buddy (#3371)

This commit is contained in:
Riza Sulistyo 2023-02-07 17:41:02 +07:00 committed by GitHub
parent 8319a6d12b
commit 5d693f87dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -109,8 +109,7 @@ class SettingDialog(tk.Toplevel):
# Prepare the variables to set/receive values from GUI
self.cfgUri = tk.StringVar()
self.cfgUri.set( self.cfg.uri )
self.cfgSubscribe = tk.IntVar()
self.cfgSubscribe.set(self.cfg.subscribe)
self.cfgSubscribe = tk.BooleanVar(value = self.cfg.subscribe)
# Build the tab page
frm = ttk.Frame(self.frm)