summaryrefslogtreecommitdiff
path: root/src/gui/gui_editcombo.pas
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-02-25 22:02:03 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-02-25 22:02:03 +0000
commite31752284d78a71eb5c68cad677eedc0df227f04 (patch)
tree27caadd9e9b221ec7b0deff3aed95e4fc7e3af42 /src/gui/gui_editcombo.pas
parent450da5d28e0173db8484a0be094bfc23872ecedc (diff)
downloadfpGUI-e31752284d78a71eb5c68cad677eedc0df227f04.tar.xz
* I believe I fixed the Button down state and Mouse Events issue. It now works under Linux. I still need to test under Windows.
* Remove the unneeded .ReleaseMouse call in EditCombo unit. * Added new credit in the Authors text file * Fixed the tab order of the Wu Line example project.
Diffstat (limited to 'src/gui/gui_editcombo.pas')
-rw-r--r--src/gui/gui_editcombo.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui_editcombo.pas b/src/gui/gui_editcombo.pas
index 00fd11c3..da04f75d 100644
--- a/src/gui/gui_editcombo.pas
+++ b/src/gui/gui_editcombo.pas
@@ -227,8 +227,8 @@ procedure TDropDownWindow.HandleHide;
begin
// HandleHide also gets called in TfpgWidget.Destroy so we need a few
// if Assigned() tests here. This should be improved on.
- if Assigned(FocusRootWidget) then
- FocusRootWidget.ReleaseMouse; // for internal ListBox
+// if Assigned(FocusRootWidget) then
+// FocusRootWidget.ReleaseMouse; // for internal ListBox
FocusRootWidget := OriginalFocusRoot;
OriginalFocusRoot := nil;