aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/vst/src/editorwin.hpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-03-25 04:55:11 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-03-25 04:55:11 +0000
commitb3cfaffbe0124254f5da70857f6c1cec59184897 (patch)
tree0be6278fc661be17a1fe0ca65238adaebecafcaa /externals/grill/vst/src/editorwin.hpp
parent7b21867fc1b9af84cd0f097b71f3bf456c9b5afd (diff)
small OSX things
experimenting a bit.... clean handling of plugin deletion (potentially open editor window etc.) svn path=/trunk/; revision=2646
Diffstat (limited to 'externals/grill/vst/src/editorwin.hpp')
-rw-r--r--externals/grill/vst/src/editorwin.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/externals/grill/vst/src/editorwin.hpp b/externals/grill/vst/src/editorwin.hpp
index 9d97771b..cbdd807f 100644
--- a/externals/grill/vst/src/editorwin.hpp
+++ b/externals/grill/vst/src/editorwin.hpp
@@ -56,7 +56,7 @@ static LRESULT CALLBACK wndproc(HWND hwnd,UINT msg,WPARAM wp,LPARAM lp)
case WM_TIMER: // fall through
case WM_ENTERIDLE:
- plug->EditorIdle();
+// plug->EditorIdle();
break;
#if 0
case WM_WINDOWPOSCHANGED: {
@@ -225,7 +225,10 @@ static void threadfun(flext::thr_params *p)
}
else {
TranslateMessage(&msg);
+// double tm1 = flext::GetOSTime();
DispatchMessage(&msg);
+// double tm2 = flext::GetOSTime();
+// if(tm2-tm1 > 0.01) FLEXT_LOG1("halt %lf",(tm2-tm1)*1000);
}
}