# HG changeset patch # User Jan D. # Date 1262950917 -3600 # Node ID 0c270bc7ceff1dccf643b0cf76344f88e5238073 # Parent 832dec78870981568b07a06e5894908ab2c0de0b Frame width was not updated in fullscreen when scroll bars where removed/added. (change_frame_size_1): newwidth == FRAME_COLS (f) must also be true before we can return early (bug #5339). diff -r 832dec788709 -r 0c270bc7ceff src/ChangeLog --- a/src/ChangeLog Fri Jan 08 07:58:54 2010 +0100 +++ b/src/ChangeLog Fri Jan 08 12:41:57 2010 +0100 @@ -1,3 +1,8 @@ +2010-01-08 Jan Djärv + + * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must + also be true before we can return early (bug #5339). + 2010-01-06 David Reitter * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS. diff -r 832dec788709 -r 0c270bc7ceff src/dispnew.c --- a/src/dispnew.c Fri Jan 08 07:58:54 2010 +0100 +++ b/src/dispnew.c Fri Jan 08 12:41:57 2010 +0100 @@ -6340,8 +6340,11 @@ check_frame_size (f, &newheight, &newwidth); /* If we're not changing the frame size, quit now. */ + /* Frame width may be unchanged but the text portion may change, for example, + fullscreen and remove/add scroll bar. */ if (newheight == FRAME_LINES (f) - && new_frame_total_cols == FRAME_TOTAL_COLS (f)) + && newwidth == FRAME_COLS (f) // text portion unchanged + && new_frame_total_cols == FRAME_TOTAL_COLS (f)) // frame width unchanged return; BLOCK_INPUT;