Skip to content

Commit

Permalink
Code update 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulSquires committed Oct 7, 2018
1 parent 7a52685 commit 29a709b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
Binary file modified Sample_Projects/VisualDesigner/logon.exe
Binary file not shown.
Binary file modified WinFBE.wfbe
Binary file not shown.
Binary file modified WinFBE32.exe
Binary file not shown.
Binary file modified WinFBE64.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion src/WinFBE.bas
Expand Up @@ -39,7 +39,7 @@ Using Afx

#Define APPNAME WStr("WinFBE - FreeBASIC Editor")
#Define APPNAMESHORT WStr("WinFBE")
#Define APPVERSION WStr("1.8.0")
#Define APPVERSION WStr("1.8.1")

#ifdef __FB_64BIT__
#Define APPBITS WStr(" (64-bit)")
Expand Down
8 changes: 5 additions & 3 deletions src/modSplitter.inc
Expand Up @@ -68,9 +68,11 @@ End Function
' Process WM_LBUTTONUP message for splitter
' ========================================================================================
Function Splitter_OnLButtonUp() As BOOLEAN
ReleaseCapture()
gApp.bDragActive = False
gApp.hWndPanel = 0
if gApp.bDragActive then
ReleaseCapture()
gApp.bDragActive = False
gApp.hWndPanel = 0
end if
Function = 0
End Function

Expand Down

0 comments on commit 29a709b

Please sign in to comment.