summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2016-09-05 19:13:47 +0000
committerRobert Pösel <robyer@seznam.cz>2016-09-05 19:13:47 +0000
commit7ff796e0716907a6454a719a30855fd644f0a123 (patch)
tree6f756eb927d5d811376ff1abc35039c7d89c8993 /src
parent43ed6369e68965593c5cc156242baa49fa8e71b5 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/mir_app/src/clui.cpp2
1 files changed, 1 insertions, 1 deletions
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);