From f895b906a4b8779b5158690ebf73deca1dd34d0b Mon Sep 17 00:00:00 2001 From: Tim Taenny Date: Tue, 18 Jun 2019 21:17:31 +0200 Subject: [PATCH] Adjusted size of the Legal Information panel With the changes to the layout, which were introduced in the previous patch series, and the correction of the default font size, the Legal Information panel was too small to display the complete text. It has been set to a sufficient size. --- src/dialog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dialog.c b/src/dialog.c index 7a2a7354..e4903829 100644 --- a/src/dialog.c +++ b/src/dialog.c @@ -1466,8 +1466,8 @@ void wShowLegalPanel(WScreen *scr) panel->scr = scr; panel->win = WMCreateWindow(scr->wmscreen, "legal"); WMGetScaleBaseFromSystemFont(scr->wmscreen, &wmScaleWidth, &wmScaleHeight); - pwidth = WMScaleX(420); - pheight = WMScaleY(250); + pwidth = WMScaleX(440); + pheight = WMScaleY(270); WMResizeWidget(panel->win, pwidth, pheight); panel->frame = WMCreateFrame(panel->win);