From b89f3e6df52dc38c7231a25a7463e084f9cba876 Mon Sep 17 00:00:00 2001 From: dan Date: Mon, 25 Oct 2004 22:15:57 +0000 Subject: [PATCH] fixed animation speed issues with 2.6.x linux kernels --- ChangeLog | 2 ++ WINGs/Examples/.cvsignore | 1 + src/wconfig.h.in | 16 ++++++++-------- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 48e64f13..9c625c19 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,8 @@ Changes since version 0.90.0: - enhanced alt-tab panel, added theming ability - fixed issues with broken crash dialog - removed obsoleted options from wconfig.h +- changed animation delay constants to fix issues with 2.6.x linux kernels + (patch provided by Eric Piel ) Changes since version 0.80.2: diff --git a/WINGs/Examples/.cvsignore b/WINGs/Examples/.cvsignore index 6cd9f98b..78f24ccf 100644 --- a/WINGs/Examples/.cvsignore +++ b/WINGs/Examples/.cvsignore @@ -1,4 +1,5 @@ Makefile Makefile.in connect server fontl puzzle UserTime.plist +colorpick .libs .psrc .inslog2 tca.map tca.log pchdir *.rpt diff --git a/src/wconfig.h.in b/src/wconfig.h.in index eef92f4d..4c209e16 100644 --- a/src/wconfig.h.in +++ b/src/wconfig.h.in @@ -299,28 +299,28 @@ /* Zoom animation */ #define MINIATURIZE_ANIMATION_FRAMES_Z 5 #define MINIATURIZE_ANIMATION_STEPS_Z 12 -#define MINIATURIZE_ANIMATION_DELAY_Z 500 +#define MINIATURIZE_ANIMATION_DELAY_Z 10000 /* Twist animation */ #define MINIATURIZE_ANIMATION_FRAMES_T 12 #define MINIATURIZE_ANIMATION_STEPS_T 16 -#define MINIATURIZE_ANIMATION_DELAY_T 1000 +#define MINIATURIZE_ANIMATION_DELAY_T 20000 #define MINIATURIZE_ANIMATION_TWIST_T 0.5 /* Flip animation */ #define MINIATURIZE_ANIMATION_FRAMES_F 12 #define MINIATURIZE_ANIMATION_STEPS_F 16 -#define MINIATURIZE_ANIMATION_DELAY_F 1000 +#define MINIATURIZE_ANIMATION_DELAY_F 20000 #define MINIATURIZE_ANIMATION_TWIST_F 0.5 #define HIDE_ANIMATION_STEPS (MINIATURIZE_ANIMATION_STEPS*2/3) -/* delay before balloon is showed */ -#define BALLOON_DELAY 1000 +/* delay before balloon is shown (ms) */ +#define BALLOON_DELAY 1000 -/* delay for menu item selection hysteresis */ -#define MENU_SELECT_DELAY 200 +/* delay for menu item selection hysteresis (ms) */ +#define MENU_SELECT_DELAY 200 -/* delay for jumpback of scrolled menus */ +/* delay for jumpback of scrolled menus (ms) */ #define MENU_JUMP_BACK_DELAY 400 /* *** animation speed constants *** */ -- 2.11.4.GIT