diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-04-27 17:01:58 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-04-27 17:01:58 +0300 |
commit | 852689943bfbbbb933ba617cb0a971f82923a2f3 (patch) | |
tree | 11f7b934e5ea0fdd4f96efabbb213eb3189d6863 /src/ui/root.h | |
parent | 379c1f8befcc30b72f0b50dcbd653704348e4761 (diff) |
Refactor: Update event processing to not assume a single UI root
Most actions should occur in the context of the current UI root.
Diffstat (limited to 'src/ui/root.h')
-rw-r--r-- | src/ui/root.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/root.h b/src/ui/root.h index 65da8d85..39e7bf3c 100644 --- a/src/ui/root.h +++ b/src/ui/root.h | |||
@@ -13,6 +13,7 @@ struct Impl_Root { | |||
13 | iWidget * focus; | 13 | iWidget * focus; |
14 | iPtrArray *onTop; /* order is important; last one is topmost */ | 14 | iPtrArray *onTop; /* order is important; last one is topmost */ |
15 | iPtrSet * pendingDestruction; | 15 | iPtrSet * pendingDestruction; |
16 | int loadAnimTimer; | ||
16 | }; | 17 | }; |
17 | 18 | ||
18 | iDeclareTypeConstruction(Root) | 19 | iDeclareTypeConstruction(Root) |