This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
DPF
mirror of
https://github.com/DISTRHO/DPF
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Fix main window broken after modal is closed
gh-pages
falkTX
11 years ago
parent
0c9ad522ba
commit
21499c21ed
1 changed files
with
8 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-3
dgl/src/Window.cpp
+ 8
- 3
dgl/src/Window.cpp
View File
@@ -319,11 +319,16 @@ public:
XFlush(xDisplay);
#endif
if (yesNo
&& fFirstInit
)
if (yesNo)
{
fApp._oneShown();
fFirstInit = false;
if (fFirstInit)
{
fApp._oneShown();
fFirstInit = false;
}
}
else if (fModal.enabled)
exec_fini();
}
// -------------------------------------------------------------------
Write
Preview
Loading…
Cancel
Save