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

Fixed Kivy help button and updated Kivy toolbar.

This commit is contained in:
Joe R 2022-04-28 22:09:57 -04:00
parent 5f3d08cb8a
commit 53ac444792
3 changed files with 6 additions and 5 deletions

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -595,7 +595,7 @@ class Application:
style = self.opt.toolbar_style
if TOOLKIT == 'kivy':
size = 'xlarge'
style = 'bluecurve'
style = 'remix light'
d = self._getImagesDir('toolbar', style, size)
if d:
return d

View file

@ -145,10 +145,11 @@ def help_html(app, document, dir_, top=None):
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))
if TOOLKIT == "tk":
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)