[GB.FORM]
* BUG: TabPanel: Fix a temporary debugging feature that sometimes could lead to a crash. git-svn-id: svn://localhost/gambas/trunk@7132 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
0838c2a193
commit
ebc02e7a2d
@ -366,11 +366,13 @@ Public Sub DrawingArea_MouseMove()
|
|||||||
Dim bInClose As Boolean
|
Dim bInClose As Boolean
|
||||||
Dim X As Integer
|
Dim X As Integer
|
||||||
Dim bShowClose As Boolean
|
Dim bShowClose As Boolean
|
||||||
|
Dim bShift As Boolean
|
||||||
|
|
||||||
If $bDrag Then TimerDrag_Timer
|
If $bDrag Then TimerDrag_Timer
|
||||||
|
|
||||||
X = Mouse.ScreenX - Me.ScreenX
|
X = Mouse.ScreenX - Me.ScreenX
|
||||||
If Mouse.Shift And If Mouse.Control Then Debug X
|
Try bShift = Mouse.Shift And Mouse.Control
|
||||||
|
If Not Error And If bShift Then Debug X
|
||||||
|
|
||||||
If X >= 0 And If X < Me.W Then
|
If X >= 0 And If X < Me.W Then
|
||||||
bShowClose = IsClosable()
|
bShowClose = IsClosable()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user