]> git.eshelyaron.com Git - emacs.git/commitdiff
Add column width to tooltip frame width on pgtk
authorPo Lu <luangruo@yahoo.com>
Sun, 2 Jan 2022 12:28:58 +0000 (20:28 +0800)
committerPo Lu <luangruo@yahoo.com>
Sun, 2 Jan 2022 12:28:58 +0000 (20:28 +0800)
* src/pgtkfns.c (Fx_show_tip): Add column width to width to
avoid an odd problem in the GTK allocation code.  (bug#52705)

src/pgtkfns.c

index c2e5942dfbc165bacb2ca0687e96fdc8628c64a3..5d596861b8f62fca9a1fe3718ab46b9c51014c47 100644 (file)
@@ -3440,6 +3440,7 @@ Text larger than the specified size is clipped.  */)
   /* Add the frame's internal border to calculated size.  */
   width = XFIXNUM (Fcar (size)) + 2 * FRAME_INTERNAL_BORDER_WIDTH (tip_f);
   height = XFIXNUM (Fcdr (size)) + 2 * FRAME_INTERNAL_BORDER_WIDTH (tip_f);
+  width += FRAME_COLUMN_WIDTH (tip_f);
 
   /* Calculate position of tooltip frame.  */
   compute_tip_xy (tip_f, parms, dx, dy, width, height, &root_x, &root_y);