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

Allow resizing of log and comments windows

This commit is contained in:
Joe R 2025-01-06 18:28:00 -05:00
parent 4c031b9686
commit 5d1ed621e3
3 changed files with 10 additions and 3 deletions

View file

@ -555,7 +555,8 @@ class PysolMenubar(PysolMenubarTk):
'id': game.getGameNumber(format=1)}
cc = _("Comments for %(game)s %(id)s:\n\n") % kw
c = game.gsaveinfo.comment or cc
d = EditTextDialog(game.top, _("Comments for %(id)s") % kw, text=c)
d = EditTextDialog(game.top, _("Comments for %(id)s") % kw, text=c,
resizable=True)
if d.status == 0 and d.button == 0:
text = d.text
if text.strip() == cc.strip():
@ -644,13 +645,15 @@ class PysolMenubar(PysolMenubarTk):
elif mode == 103:
header = (_("%(app)s Demo Full log") if demo
else _("Full log for %(player)s")) % transkw
d = FullLog_StatsDialog(self.top, header, self.app, player)
d = FullLog_StatsDialog(self.top, header, self.app, player,
resizable=True)
gameid = d.selected_game
gamenum = d.selected_game_num
elif mode == 104:
header = (_("%(app)s Demo Session log") if demo
else _("Session log for %(player)s")) % transkw
d = SessionLog_StatsDialog(self.top, header, self.app, player)
d = SessionLog_StatsDialog(self.top, header, self.app, player,
resizable=True)
gameid = d.selected_game
gamenum = d.selected_game_num
elif mode == 105:

View file

@ -514,6 +514,8 @@ class LogDialog(MfxDialog):
title = _('Log')
MfxDialog.__init__(self, parent, title, kw.resizable, kw.default)
self.top.wm_minsize(400, 200)
self.selected_game = None
self.selected_game_num = None

View file

@ -11,6 +11,8 @@ class BaseEditTextDialog:
self, parent, title, kw.resizable, kw.default)
top_frame, bottom_frame = self.createFrames(kw)
self.createBitmaps(top_frame, kw)
self.top.wm_minsize(300, 150)
#
self.text_w = tkinter.Text(top_frame, bd=1, relief="sunken",
wrap="word", width=64, height=16)