1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-23 22:52:34 +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
- 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 <Eric.Piel@lifl.fr>)
Changes since version 0.80.2:

View File

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

View File

@@ -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 *** */