Hi, it seems to me that line gtk-window-decorator.c:3324 could be written as &quot;top_width = w;&quot; as w will always me the maximum, due to line 3319.<br><br>3319&nbsp;&nbsp;&nbsp;&nbsp; if (w &lt; ICON_SPACE + d-&gt;button_width)<br>3320&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return FALSE;<br>
3321 <br>3322&nbsp;&nbsp;&nbsp;&nbsp; top_width = name_width + d-&gt;button_width + ICON_SPACE;<br>3323&nbsp;&nbsp;&nbsp;&nbsp; if (w &lt; top_width)<br>3324&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; top_width = MAX (ICON_SPACE + d-&gt;button_width, w);<br><br>&nbsp;- Joel<br>