1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 20:38:08 +01:00

Remove 'hiding' parameter from animateResize()

It was a bit pointless.
This commit is contained in:
Carlos R. Mafra
2009-10-10 18:47:32 +02:00
parent e9309e1e39
commit b014ef2770
3 changed files with 10 additions and 14 deletions

View File

@@ -366,7 +366,7 @@ void DoWindowBirth(WWindow *wwin)
center_x = wwin->frame_x + (width - w) / 2;
center_y = wwin->frame_y + (height - h) / 2;
animateResize(scr, center_x, center_y, 1, 1, wwin->frame_x, wwin->frame_y, width, height, 0);
animateResize(scr, center_x, center_y, 1, 1, wwin->frame_x, wwin->frame_y, width, height);
}
#else
void DoWindowBirth(WWindow *wwin)