mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 22:18:15 +02:00
Gtk3: focus message is not needed under gtk3 since it is organized in different way. Regression from r55062 #09f9152b29
git-svn-id: trunk@55063 -
This commit is contained in:
parent
09f9152b29
commit
f849bd1bab
@ -2131,14 +2131,6 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
{Issues #24308,#21900. Gtk should always send LM_SETFOCUS before LM_XXXX - mouse click}
|
||||
if ((Msg.Msg = LM_LBUTTONDOWN) or (Msg.Msg = LM_RBUTTONDOWN) or
|
||||
(Msg.Msg = LM_MBUTTONDOWN) or (Msg.Msg = LM_LBUTTONDBLCLK) or
|
||||
(Msg.Msg = LM_XBUTTONDOWN)) and Assigned(LCLObject) and
|
||||
not LCLObject.Focused and LCLObject.CanFocus and
|
||||
not (csDesigning in LCLObject.ComponentState) then
|
||||
LCLIntf.SetFocus(LCLObject.Handle);
|
||||
|
||||
{$IF DEFINED(GTK3DEBUGEVENTS) OR DEFINED(GTK3DEBUGMOUSE)}
|
||||
DebugLn('TGtk3Widget.GtkEventMouse ',dbgsName(LCLObject),
|
||||
' msg=',dbgs(msg.Msg), ' point=',dbgs(Msg.XPos),',',dbgs(Msg.YPos));
|
||||
|
Loading…
Reference in New Issue
Block a user