* Fixed bug 2456 (propsheet's apply button enabling at the wrong time)

See issue #2456 for more details.

svn path=/trunk/; revision=29383
This commit is contained in:
Gregor Brunmar 2007-10-03 19:34:34 +00:00
parent 55df7a560f
commit 62cb1ae6bf
2 changed files with 11 additions and 0 deletions

View file

@ -111,6 +111,15 @@ Index: propsheet.c
}
/******************************************************************************
@@ -3555,6 +3558,8 @@
* from which to switch to the next page */
SendMessageW(hwndTabCtrl, TCM_SETCURSEL, psInfo->active_page, 0);
+ PROPSHEET_UnChanged(hwnd, (HWND)wParam);
+
return TRUE;
}
Index: tooltips.c
===================================================================
--- tooltips.c (revision 25790)

View file

@ -3558,6 +3558,8 @@ PROPSHEET_DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
* from which to switch to the next page */
SendMessageW(hwndTabCtrl, TCM_SETCURSEL, psInfo->active_page, 0);
PROPSHEET_UnChanged(hwnd, (HWND)wParam);
return TRUE;
}