1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Scaled help window to the screen.

This commit is contained in:
Joe R 2022-03-17 21:48:05 -04:00
parent a05044e40e
commit 5af91ccdd7

View file

@ -139,12 +139,17 @@ def help_html(app, document, dir_, top=None):
except Exception:
# traceback.print_exc()
top = make_help_toplevel(app, title=_("%s Help") % TITLE)
if top.winfo_screenwidth() < 800 or top.winfo_screenheight() < 600:
# maximized = 1
top.wm_minsize(300, 150)
else:
# maximized = 0
top.wm_minsize(400, 200)
sw = top.winfo_screenwidth()
sh = top.winfo_screenheight()
h = int(sh * .8)
w = min(650, int(sw * .8))
th = int(top.winfo_rooty() - top.winfo_y())
top.wm_minsize(w, min(200, h))
top.geometry("%dx%d+%d+%d" % (w, h, (sw - w) / 2, ((sh - h) / 2) - th))
viewer = HTMLViewer(top, app, help_html_index)
viewer.display(doc)
# wm_map(top, maximized=maximized)