From d713f88ef3c639eba7211fdd59ec8f34b1ba6fa9 Mon Sep 17 00:00:00 2001 From: Sergey Tatarinov Date: Wed, 22 May 2013 15:43:24 +0000 Subject: Fixed tooltips in the options dialogs git-svn-id: http://svn.miranda-ng.org/main/trunk@4803 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Db_autobackups/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/Db_autobackups/src/main.cpp') diff --git a/plugins/Db_autobackups/src/main.cpp b/plugins/Db_autobackups/src/main.cpp index 5566dc0b51..4edc3dfbad 100644 --- a/plugins/Db_autobackups/src/main.cpp +++ b/plugins/Db_autobackups/src/main.cpp @@ -167,10 +167,10 @@ HWND CreateToolTip(HWND hwndParent, LPTSTR ptszText, LPTSTR ptszTitle) ti.hinst = hInst; ti.lpszText = ptszText; GetClientRect (hwndParent, &ti.rect); - ti.rect.left -= 80; + ti.rect.left = -80; SendMessage(hwndTT, TTM_ADDTOOL, 0, (LPARAM) (LPTOOLINFO) &ti); SendMessage(hwndTT, TTM_SETTITLE, 1, (LPARAM)ptszTitle); - SendMessage(hwndTT, TTM_SETMAXTIPWIDTH, 0, (LPARAM)700); + SendMessage(hwndTT, TTM_SETMAXTIPWIDTH, 0, (LPARAM)650); return hwndTT; } \ No newline at end of file -- cgit v1.2.3