diff options
Diffstat (limited to 'src/widget.c')
| -rw-r--r-- | src/widget.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widget.c b/src/widget.c index 2ab11fa1a5f..e65ee014bd3 100644 --- a/src/widget.c +++ b/src/widget.c | |||
| @@ -446,7 +446,7 @@ set_frame_size (ew) | |||
| 446 | * FONT_WIDTH (frame->output_data.x->font))); | 446 | * FONT_WIDTH (frame->output_data.x->font))); |
| 447 | 447 | ||
| 448 | frame->output_data.x->flags_areas_extra | 448 | frame->output_data.x->flags_areas_extra |
| 449 | = 2 * FRAME_FLAGS_AREA_WIDTH (frame); | 449 | = FRAME_FLAGS_AREA_WIDTH (frame); |
| 450 | 450 | ||
| 451 | change_frame_size (frame, h, w, 1, 0, 0); | 451 | change_frame_size (frame, h, w, 1, 0, 0); |
| 452 | char_to_pixel_size (ew, w, h, &pixel_width, &pixel_height); | 452 | char_to_pixel_size (ew, w, h, &pixel_width, &pixel_height); |
| @@ -922,7 +922,7 @@ EmacsFrameSetCharSize (widget, columns, rows) | |||
| 922 | : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.x->font))); | 922 | : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.x->font))); |
| 923 | 923 | ||
| 924 | f->output_data.x->flags_areas_extra | 924 | f->output_data.x->flags_areas_extra |
| 925 | = 2 * FRAME_FLAGS_AREA_WIDTH (f); | 925 | = FRAME_FLAGS_AREA_WIDTH (f); |
| 926 | 926 | ||
| 927 | char_to_pixel_size (ew, columns, rows, &pixel_width, &pixel_height); | 927 | char_to_pixel_size (ew, columns, rows, &pixel_width, &pixel_height); |
| 928 | 928 | ||