Changeset 3936
- Timestamp:
- 2005年10月29日 03時08分50秒 (3 years ago)
- Files:
-
- branches/2.1/src/ChangeLog.Meadow (modified) (1 diff)
- branches/2.1/src/mw32fns.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.1/src/ChangeLog.Meadow
r3875 r3936 1 2005-10-29 Kyotaro HORIGUCHI <horiguti@meadowy.org> 2 3 * mw32fns.c (mw32m_create_frame_window): Prevent the title bar 4 from overlapping with the task bar at the top of the screen on 5 creating frame. See ticket:212. 6 1 7 2005-09-16 Kyotaro HORIGUCHI <horiguti@meadowy.org> 2 8 branches/2.1/src/mw32fns.c
r3830 r3936 2818 2818 { 2819 2819 HWND hwnd; 2820 RECT rc; 2821 2822 /* Prevent the title bar from overlapping with the task bar at the 2823 top of the screen on creating frame. */ 2824 hwnd = FindWindow (TEXT ("Shell_TrayWnd"), NULL); 2825 if (hwnd 2826 && GetWindowRect (hwnd, &rc) && rc.top <= 0 2827 && rc.bottom > f->output_data.mw32->top_pos) 2828 f->output_data.mw32->top_pos = rc.bottom; 2820 2829 2821 2830 hwnd = CreateWindowEx (f->output_data.mw32->dwStyleEx,
