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