Changeset 3927
- Timestamp:
- 10/21/05 16:39:01 (3 years ago)
- Files:
-
- trunk/src/ChangeLog.Meadow (modified) (1 diff)
- trunk/src/dispnew.c (modified) (1 diff)
- trunk/src/mw32term.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/ChangeLog.Meadow
r3926 r3927 1 2005-10-19 Kyotaro HORIGUCHI <horiguti@meadowy.org> 2 3 * dispnew.c (direct_output_forward_char): Call 4 mw32_update_frame_alpha() to refresh display when frame alpha is 5 used. 6 Fixed ticket:210 7 8 * mw32term.c (show_or_hide_mouse_cursor): Suppress unnecesary 9 timer creation. 10 (show_or_hide_mouse_cursor<WM_TIMER>): Delete timer when the mouse 11 cursor is hidden. 12 1 13 2005-10-21 Masayuki FUJII <boochang@m4.kcn.ne.jp> 2 14 trunk/src/dispnew.c
r3863 r3927 3811 3811 3812 3812 fflush (stdout); 3813 #ifdef MEADOW 3814 mw32_update_frame_alpha (f, NULL); 3815 #endif 3813 3816 redisplay_performed_directly_p = 1; 3814 3817 return 1; trunk/src/mw32term.c
r3926 r3927 4237 4237 if (timeout > 0 4238 4238 && mouse_hide_timer == 0 4239 && dpyinfo->mouse_cursor_stat == 0) 4239 && dpyinfo->mouse_cursor_stat == 0 4240 && dpyinfo->mw32_highlight_frame == XFRAME (selected_frame) 4241 && FRAME_MW32_WINDOW (XFRAME (selected_frame)) == msg.hwnd) 4240 4242 mouse_hide_timer = SetTimer (msg.hwnd, MW32_MOUSE_HIDE_TIMER_ID, 4241 4243 timeout, NULL); … … 4293 4295 else 4294 4296 { 4297 KillTimer (msg.hwnd, mouse_hide_timer); 4295 4298 mouse_hide_timer = 0; 4296 4299
