Compare commits

..

No commits in common. "b650b0c8b73fef85fa6c447b8e9f182cbeb60226" and "180a106d2c93e201576f9c4aadf124103c1cb370" have entirely different histories.

2 changed files with 1 additions and 28 deletions

View file

@ -1,27 +0,0 @@
#!/usr/bin/env python3
from tkinter import *
from tkinter import ttk
import urllib
#https://github.com/Lynnesbian/mstdn-ebooks/archive/master.zip
root = Tk()
root.title = "mstdn-ebooks Setup Wizard"
frame = ttk.Frame(root)
nb = ttk.Notebook(frame)
frm_button_box = ttk.Frame(frame)
btn_cancel = ttk.Button(frm_button_box, text = "Cancel")
btn_back = ttk.Button(frm_button_box, text = "Back")
btn_next = ttk.Button(frm_button_box, text = "Next")
nb.pack(fill = "both", expand = True)
frm_button_box.pack()
btn_cancel.grid(column = 0, row = 0)
btn_back.grid(column = 1, row = 0)
btn_next.grid(column = 2, row = 0)
frame.pack(fill = "both", expand = True)
root.mainloop()