diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2013-06-03 21:36:38 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2013-06-03 21:36:38 +0200 |
commit | cca9187b2ea283a0257050737d46e8213c432f0c (patch) | |
tree | 15d0bbcb602d2c52573f6404b00a2507f04aad3f /src | |
parent | 1e8db04f1f772c1aa039cef1a33ce6469d57dce7 (diff) |
call Fl_Window::show() from Xembed::show() to make embedding easier (BUG#1127)
Diffstat (limited to 'src')
-rw-r--r-- | src/xembed.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xembed.cc b/src/xembed.cc index f180d81d..88494495 100644 --- a/src/xembed.cc +++ b/src/xembed.cc @@ -108,6 +108,7 @@ void Xembed::show() { createInternal(xid); setXembedInfo(1); Fl::event_dispatch(event_handler); + Fl_Window::show(); } void Xembed::createInternal(uint32_t parent) { |