Mercurial > audlegacy
changeset 2025:73471758fc71 trunk
[svn] - make sure the mainwin is redrawn correctly when doublesized. reported by Tom St. Denis, closes #674.
author | nenolod |
---|---|
date | Wed, 29 Nov 2006 19:49:30 -0800 |
parents | 2f8a85fc9450 |
children | f15664434382 |
files | ChangeLog audacious/mainwin.c |
diffstat | 2 files changed, 10 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Wed Nov 29 13:46:59 2006 -0800 +++ b/ChangeLog Wed Nov 29 19:49:30 2006 -0800 @@ -1,3 +1,11 @@ +2006-11-29 21:46:59 +0000 William Pitcock <nenolod@nenolod.net> + revision [3043] + - fix conditionals for building build_stamp.c + + trunk/audacious/Makefile | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2006-11-29 21:09:07 +0000 William Pitcock <nenolod@nenolod.net> revision [3041] - seeking by keypad should seek 5s, not 1s. closes #673.
--- a/audacious/mainwin.c Wed Nov 29 13:46:59 2006 -0800 +++ b/audacious/mainwin.c Wed Nov 29 19:49:30 2006 -0800 @@ -1051,8 +1051,8 @@ height == bmp_active_skin->properties.mainwin_height * (cfg.doublesize + 1)) return; - dock_window_resize(GTK_WINDOW(mainwin), cfg.player_shaded ? MAINWIN_SHADED_WIDTH : bmp_active_skin->properties.mainwin_width * (cfg.doublesize + 1), - cfg.player_shaded ? MAINWIN_SHADED_HEIGHT : bmp_active_skin->properties.mainwin_height * (cfg.doublesize + 1), + dock_window_resize(GTK_WINDOW(mainwin), cfg.player_shaded ? MAINWIN_SHADED_WIDTH * (cfg.doublesize + 1) : bmp_active_skin->properties.mainwin_width * (cfg.doublesize + 1), + cfg.player_shaded ? MAINWIN_SHADED_HEIGHT * (cfg.doublesize + 1) : bmp_active_skin->properties.mainwin_height * (cfg.doublesize + 1), bmp_active_skin->properties.mainwin_width * (cfg.doublesize + 1), bmp_active_skin->properties.mainwin_height * (cfg.doublesize + 1));