diff options
Diffstat (limited to 'src/ui/window.h')
-rw-r--r-- | src/ui/window.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/window.h b/src/ui/window.h index a5b8f137..282e1682 100644 --- a/src/ui/window.h +++ b/src/ui/window.h | |||
@@ -86,6 +86,7 @@ struct Impl_Window { | |||
86 | iRoot * roots[2]; /* root widget and UI state; second one is for split mode */ | 86 | iRoot * roots[2]; /* root widget and UI state; second one is for split mode */ |
87 | iRoot * keyRoot; /* root that has the current keyboard input focus */ | 87 | iRoot * keyRoot; /* root that has the current keyboard input focus */ |
88 | iWidget * hover; | 88 | iWidget * hover; |
89 | iWidget * lastHover; /* cleared if deleted */ | ||
89 | iWidget * mouseGrab; | 90 | iWidget * mouseGrab; |
90 | iWidget * focus; | 91 | iWidget * focus; |
91 | float pixelRatio; /* conversion between points and pixels, e.g., coords, window size */ | 92 | float pixelRatio; /* conversion between points and pixels, e.g., coords, window size */ |
@@ -98,7 +99,6 @@ struct Impl_Window { | |||
98 | SDL_Cursor * cursors[SDL_NUM_SYSTEM_CURSORS]; | 99 | SDL_Cursor * cursors[SDL_NUM_SYSTEM_CURSORS]; |
99 | SDL_Cursor * pendingCursor; | 100 | SDL_Cursor * pendingCursor; |
100 | int loadAnimTimer; | 101 | int loadAnimTimer; |
101 | // iAnim rootOffset; | ||
102 | int keyboardHeight; /* mobile software keyboards */ | 102 | int keyboardHeight; /* mobile software keyboards */ |
103 | }; | 103 | }; |
104 | 104 | ||