From 415ac91afc4fd46cf70f446a6e2ebd943a1e2d07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Sat, 2 Nov 2013 20:02:26 +0100 Subject: [PATCH] Window Maker Developers Team Copyright MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch includes the Dev Team Copyright in the info panel. Signed-off-by: Rodolfo García Peñas (kix) --- src/dialog.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/dialog.c b/src/dialog.c index 5655cd50..adf19e38 100644 --- a/src/dialog.c +++ b/src/dialog.c @@ -1105,7 +1105,8 @@ typedef struct { #define COPYRIGHT_TEXT \ "Copyright \xc2\xa9 1997-2006 Alfredo K. Kojima\n"\ - "Copyright \xc2\xa9 1998-2006 Dan Pascu" + "Copyright \xc2\xa9 1998-2006 Dan Pascu\n"\ + "Copyright \xc2\xa9 2013 Window Maker Developers Team" static InfoPanel *thePanel = NULL; @@ -1126,7 +1127,7 @@ static void destroyInfoPanel(WCoreWindow *foo, void *data, XEvent *event) void wShowInfoPanel(WScreen *scr) { const int win_width = 382; - const int win_height = 230; + const int win_height = 250; InfoPanel *panel; WMPixmap *logo; WMFont *font; @@ -1219,7 +1220,7 @@ void wShowInfoPanel(WScreen *scr) WMSetLabelWraps(panel->versionL, False); panel->copyrL = WMCreateLabel(panel->win); - WMResizeWidget(panel->copyrL, 360, 40); + WMResizeWidget(panel->copyrL, 360, 60); WMMoveWidget(panel->copyrL, 15, 185); WMSetLabelTextAlignment(panel->copyrL, WALeft); WMSetLabelText(panel->copyrL, COPYRIGHT_TEXT);