From 7ff796e0716907a6454a719a30855fd644f0a123 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Mon, 5 Sep 2016 19:13:47 +0000 Subject: Make initial width of clist reasonably bigger This improves look of our default skin at first start. git-svn-id: http://svn.miranda-ng.org/main/trunk@17259 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/mir_app/src/clui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/mir_app/src/clui.cpp b/src/mir_app/src/clui.cpp index a182ab0f66..c679c6a15f 100644 --- a/src/mir_app/src/clui.cpp +++ b/src/mir_app/src/clui.cpp @@ -283,7 +283,7 @@ int LoadCLUIModule(void) RECT pos; pos.left = (int)db_get_dw(NULL, "CList", "x", 700); pos.top = (int)db_get_dw(NULL, "CList", "y", 221); - pos.right = pos.left + (int)db_get_dw(NULL, "CList", "Width", 108); + pos.right = pos.left + (int)db_get_dw(NULL, "CList", "Width", 150); pos.bottom = pos.top + (int)db_get_dw(NULL, "CList", "Height", 310); Utils_AssertInsideScreen(&pos); -- cgit v1.2.3