diff options
author | culler <culler> | 2019-02-07 18:26:37 (GMT) |
---|---|---|
committer | culler <culler> | 2019-02-07 18:26:37 (GMT) |
commit | 422f0f5d203bfb7aad77106e2239a60eb7c0ccc0 (patch) | |
tree | ba6a04d51b7b022c6667c265e7259870e320d447 /win/tkWinEmbed.c | |
parent | f3021bb678bdcf54ee9149b3ef746a79cee07f6f (diff) | |
parent | 43fbfc9de2fc5eac324e919e0f04ac80c9a52589 (diff) | |
download | tk-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.c | 9 |
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. */ |