diff options
| author | allusive-dev <[email protected]> | 2023-10-31 20:00:04 +1100 |
|---|---|---|
| committer | allusive-dev <[email protected]> | 2023-10-31 20:00:04 +1100 |
| commit | 6af7735fbec073d4a7cf6193edad9e64f34f4984 (patch) | |
| tree | 9c6218dd66f4d04e80c15948af60a00361b2a858 /src/common.h | |
| parent | Change for #13 (diff) | |
| download | compfy-6af7735fbec073d4a7cf6193edad9e64f34f4984.tar.xz compfy-6af7735fbec073d4a7cf6193edad9e64f34f4984.zip | |
Resolved wrong animations playing. At the cost of deprecating not working features.1.2.0
Diffstat (limited to 'src/common.h')
| -rw-r--r-- | src/common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common.h b/src/common.h index 809d4e5..aa33140 100644 --- a/src/common.h +++ b/src/common.h @@ -197,9 +197,9 @@ typedef struct session { /// Width of root window. int root_width; /// Current desktop number of root window - int root_desktop_num; + // int root_desktop_num; /// Desktop switch direction - int root_desktop_switch_direction; + // int root_desktop_switch_direction; /// X Composite overlay window. xcb_window_t overlay; /// The target window for debug mode @@ -258,7 +258,7 @@ typedef struct session { /// Pre-generated alpha pictures. xcb_render_picture_t *alpha_picts; /// Time of last fading. In milliseconds. - long long fade_time; + long fade_time; /// Time of last window animation step. In milliseconds. long animation_time; /// Head pointer of the error ignore linked list. |