1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-03 04:14:20 +01:00

fixed animation speed issues with 2.6.x linux kernels

This commit is contained in:
dan
2004-10-25 22:15:57 +00:00
parent 4bc0bcfbc2
commit b89f3e6df5
3 changed files with 11 additions and 8 deletions

View File

@@ -7,6 +7,8 @@ Changes since version 0.90.0:
- enhanced alt-tab panel, added theming ability - enhanced alt-tab panel, added theming ability
- fixed issues with broken crash dialog - fixed issues with broken crash dialog
- removed obsoleted options from wconfig.h - removed obsoleted options from wconfig.h
- changed animation delay constants to fix issues with 2.6.x linux kernels
(patch provided by Eric Piel <Eric.Piel@lifl.fr>)
Changes since version 0.80.2: Changes since version 0.80.2:

View File

@@ -1,4 +1,5 @@
Makefile Makefile.in Makefile Makefile.in
connect server fontl puzzle UserTime.plist connect server fontl puzzle UserTime.plist
colorpick
.libs .libs
.psrc .inslog2 tca.map tca.log pchdir *.rpt .psrc .inslog2 tca.map tca.log pchdir *.rpt

View File

@@ -299,28 +299,28 @@
/* Zoom animation */ /* Zoom animation */
#define MINIATURIZE_ANIMATION_FRAMES_Z 5 #define MINIATURIZE_ANIMATION_FRAMES_Z 5
#define MINIATURIZE_ANIMATION_STEPS_Z 12 #define MINIATURIZE_ANIMATION_STEPS_Z 12
#define MINIATURIZE_ANIMATION_DELAY_Z 500 #define MINIATURIZE_ANIMATION_DELAY_Z 10000
/* Twist animation */ /* Twist animation */
#define MINIATURIZE_ANIMATION_FRAMES_T 12 #define MINIATURIZE_ANIMATION_FRAMES_T 12
#define MINIATURIZE_ANIMATION_STEPS_T 16 #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 #define MINIATURIZE_ANIMATION_TWIST_T 0.5
/* Flip animation */ /* Flip animation */
#define MINIATURIZE_ANIMATION_FRAMES_F 12 #define MINIATURIZE_ANIMATION_FRAMES_F 12
#define MINIATURIZE_ANIMATION_STEPS_F 16 #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 MINIATURIZE_ANIMATION_TWIST_F 0.5
#define HIDE_ANIMATION_STEPS (MINIATURIZE_ANIMATION_STEPS*2/3) #define HIDE_ANIMATION_STEPS (MINIATURIZE_ANIMATION_STEPS*2/3)
/* delay before balloon is showed */ /* delay before balloon is shown (ms) */
#define BALLOON_DELAY 1000 #define BALLOON_DELAY 1000
/* delay for menu item selection hysteresis */ /* delay for menu item selection hysteresis (ms) */
#define MENU_SELECT_DELAY 200 #define MENU_SELECT_DELAY 200
/* delay for jumpback of scrolled menus */ /* delay for jumpback of scrolled menus (ms) */
#define MENU_JUMP_BACK_DELAY 400 #define MENU_JUMP_BACK_DELAY 400
/* *** animation speed constants *** */ /* *** animation speed constants *** */