summaryrefslogtreecommitdiffstats
path: root/win/tkWinEmbed.c
diff options
context:
space:
mode:
authorculler <culler>2019-02-07 18:26:37 (GMT)
committerculler <culler>2019-02-07 18:26:37 (GMT)
commit422f0f5d203bfb7aad77106e2239a60eb7c0ccc0 (patch)
treeba6a04d51b7b022c6667c265e7259870e320d447 /win/tkWinEmbed.c
parentf3021bb678bdcf54ee9149b3ef746a79cee07f6f (diff)
parent43fbfc9de2fc5eac324e919e0f04ac80c9a52589 (diff)
downloadtk-422f0f5d203bfb7aad77106e2239a60eb7c0ccc0.zip
tk-422f0f5d203bfb7aad77106e2239a60eb7c0ccc0.tar.gz
tk-422f0f5d203bfb7aad77106e2239a60eb7c0ccc0.tar.bz2
Fix bug [58665b91dd]: many unixEmbed tests fail.
Diffstat (limited to 'win/tkWinEmbed.c')
-rw-r--r--win/tkWinEmbed.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/win/tkWinEmbed.c b/win/tkWinEmbed.c
index daffb94..0317ce6 100644
--- a/win/tkWinEmbed.c
+++ b/win/tkWinEmbed.c
@@ -856,6 +856,15 @@ ContainerEventProc(
Tk_Window tkwin = (Tk_Window)containerPtr->parentPtr;
if (eventPtr->type == ConfigureNotify) {
+
+ /*
+ * Send a ConfigureNotify to the embedded application.
+ */
+
+ if (containerPtr->embeddedPtr != None) {
+ TkDoConfigureNotify(containerPtr->embeddedPtr);
+ }
+
/*
* Resize the embedded window, if there is any.
*/