aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/detail/types.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-03-16 16:13:51 +0100
committerDavid Robillard <d@drobilla.net>2020-03-16 16:13:51 +0100
commit8f56441dcb1805a2ecec7c97ee547f241e1dcf11 (patch)
tree0f618737b3cc61a1a175361c8a2c277dbad9b26b /pugl/detail/types.h
parent67b7970697011bbd26fbf4175eb2e5ebd1b00939 (diff)
downloadpugl-8f56441dcb1805a2ecec7c97ee547f241e1dcf11.tar.gz
pugl-8f56441dcb1805a2ecec7c97ee547f241e1dcf11.tar.bz2
pugl-8f56441dcb1805a2ecec7c97ee547f241e1dcf11.zip
Separate cached configuration from frame
This was a bad idea and a never-ending source of problems. The frame represents what the "current" frame is from a Pugl perspective, but with the asynchronicity of X11 and other issues this cant be used to filter configure events. Instead, simply cache the last configure event that was sent and compare with that.
Diffstat (limited to 'pugl/detail/types.h')
-rw-r--r--pugl/detail/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/detail/types.h b/pugl/detail/types.h
index 71cfda0..e750ca1 100644
--- a/pugl/detail/types.h
+++ b/pugl/detail/types.h
@@ -64,13 +64,13 @@ struct PuglViewImpl {
uintptr_t transientParent;
PuglHints hints;
PuglRect frame;
+ PuglEventConfigure lastConfigure;
int minWidth;
int minHeight;
int minAspectX;
int minAspectY;
int maxAspectX;
int maxAspectY;
- bool configured;
bool visible;
};