Skip to content

Commit

Permalink
Add export HTML button to export optons.
Browse files Browse the repository at this point in the history
  • Loading branch information
hreikin committed Apr 16, 2022
1 parent d04d17f commit 21d9b6c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tkintermd/frame.py
Expand Up @@ -123,6 +123,8 @@ def __init__(self, master, **kwargs):
self.template_label.pack(side="left")
self.template_combobox = Combobox(self.export_options_row_a, values=constants.template_list)
self.template_combobox.pack(side="left")
self.export_options_export_btn = tk.Button(self.export_options_row_a, text="Export HTML", command=self.save_as_html_file)
self.export_options_export_btn.pack(side="left", padx=0, pady=0)
self.export_options_row_a.pack(fill="both")
self.export_options_frame.pack(fill="both")
# HTML code preview/edit before export with scrollbar and text area.
Expand Down

0 comments on commit 21d9b6c

Please sign in to comment.