Changeset 1337
- Timestamp:
- 01/01/08 15:35:46 (8 months ago)
- Location:
- trunk/src/buzelib
- Files:
-
- 3 modified
-
DockTabFrame/DockTabFrame.h (modified) (2 diffs)
-
WaveTableList.cpp (modified) (1 diff)
-
buze.rc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/buzelib/DockTabFrame/DockTabFrame.h
r1273 r1337 1411 1411 , sourcePaneWnd( NULL) 1412 1412 , targetPaneWnd( NULL) 1413 , targetRect(0, 0, 0, 0) 1413 1414 {} 1414 1415 … … 3080 3081 3081 3082 // check if a user holds CTRL key 3082 if ( MK_CONTROL & keysPressed3083 if ( (MK_CONTROL & keysPressed) == 0 3083 3084 // || ( this->dragContext->stateSet.isFloating() 3084 3085 || ( this->dragContext->stateSet.dockable && this->dragContext->stateSet.null) 3085 3086 ) 3086 goto dragOver_exit; // noway to drop with floating state or CTRL key pressed3087 goto dragOver_exit; // noway to drop with floating state or CTRL key unpressed 3087 3088 3088 3089 // check if the cursor over a float frame -
trunk/src/buzelib/WaveTableList.cpp
r1295 r1337 31 31 ScreenToClient(&pt); 32 32 int curWave = this->HitTest(pt, 0); 33 if (curWave == -1) return 0; 33 34 34 35 SetRedraw(FALSE); -
trunk/src/buzelib/buze.rc
r1333 r1337 41 41 3 TEXTINCLUDE 42 42 BEGIN 43 "#if (_MSC_VER < = 1300)\r\n"43 "#if (_MSC_VER < 1400)\r\n" 44 44 "CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST ""res\\\\buze.exe.manifest""\r\n" 45 45 "#endif\r\n" … … 1240 1240 // Generated from the TEXTINCLUDE 3 resource. 1241 1241 // 1242 #if (_MSC_VER < = 1300)1242 #if (_MSC_VER < 1400) 1243 1243 CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "res\\buze.exe.manifest" 1244 1244 #endif
