aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2015-12-14 09:43:40 +0100
committerDan Gudmundsson <[email protected]>2015-12-14 09:43:40 +0100
commitedfc51d4b2c2926848cedefd14993ce18333bc20 (patch)
treebfd40d6a4f94d66a8fc62cc0c6598fbffec0c7c9
parent745159c619dbcb53a54acab3d3482311439a57fc (diff)
parentdc5fa98e2ce79e072a748142e1f5911f926f93fc (diff)
downloadotp-edfc51d4b2c2926848cedefd14993ce18333bc20.tar.gz
otp-edfc51d4b2c2926848cedefd14993ce18333bc20.tar.bz2
otp-edfc51d4b2c2926848cedefd14993ce18333bc20.zip
Merge branch 'dgud/wx/fix-observer-display' into maint
* dgud/wx/fix-observer-display: wx: Revert part of 617387025b698c
-rw-r--r--lib/wx/c_src/wxe_impl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wx/c_src/wxe_impl.cpp b/lib/wx/c_src/wxe_impl.cpp
index c5bad41573..f81d0bbbd9 100644
--- a/lib/wx/c_src/wxe_impl.cpp
+++ b/lib/wx/c_src/wxe_impl.cpp
@@ -225,9 +225,9 @@ void handle_event_callback(ErlDrvPort port, ErlDrvTermData process)
if(driver_monitor_process(port, process, &monitor) == 0) {
// Should we be able to handle commands when recursing? probably
// fprintf(stderr, "\r\nCB EV Start %lu \r\n", process);fflush(stderr);
- app->recurse_level += 2;
+ app->recurse_level++;
app->dispatch_cb(wxe_queue, process);
- app->recurse_level -= 2;
+ app->recurse_level--;
// fprintf(stderr, "CB EV done %lu \r\n", process);fflush(stderr);
driver_demonitor_process(port, &monitor);
}