comparison audacious/dock.c @ 1938:1d9c1026d9f8 trunk

[svn] - DoubleSize support. This has bugs, the most notable one being that DoubleSize only works right if you restart the player. The second bug is rather obvious too. No osmosis skinengine. No TinyPlayer. Classic-esque skinengine only. This is because the doublesize algorithm hates you and wants you to go die in a fire.
author nenolod
date Sun, 05 Nov 2006 04:43:16 -0800
parents bd51407ce849
children f18a5b617c34
comparison
equal deleted inserted replaced
1937:f6856d226afb 1938:1d9c1026d9f8
287 } 287 }
288 } 288 }
289 return shade_list; 289 return shade_list;
290 } 290 }
291 291
292 static void 292 void
293 dock_window_resize(GtkWindow * widget, gint new_w, gint new_h, gint w, gint h) 293 dock_window_resize(GtkWindow * widget, gint new_w, gint new_h, gint w, gint h)
294 { 294 {
295 gdk_window_set_hints(GTK_WIDGET(widget)->window, 0, 0, MIN(w, new_w), 295 gdk_window_set_hints(GTK_WIDGET(widget)->window, 0, 0, MIN(w, new_w),
296 MIN(h, new_h), MAX(w, new_w), MAX(h, new_h), 296 MIN(h, new_h), MAX(w, new_w), MAX(h, new_h),
297 GDK_HINT_MIN_SIZE | GDK_HINT_MAX_SIZE); 297 GDK_HINT_MIN_SIZE | GDK_HINT_MAX_SIZE);