Merge pull request #403 from coreemu/coretk-enhance/fix-bugs

Coretk enhance/fix bugs
This commit is contained in:
bharnden 2020-03-04 14:55:10 -08:00 committed by GitHub
commit f2da8dc2c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 4 deletions

View file

@ -57,9 +57,7 @@ class PreferencesDialog(Dialog):
label = ttk.Label(frame, text="Terminal")
label.grid(row=2, column=0, pady=PADY, padx=PADX, sticky="w")
terminals = sorted(appconfig.TERMINALS.values())
combobox = ttk.Combobox(
frame, textvariable=self.terminal, values=terminals, state="readonly"
)
combobox = ttk.Combobox(frame, textvariable=self.terminal, values=terminals)
combobox.grid(row=2, column=1, sticky="ew")
label = ttk.Label(frame, text="3D GUI")