mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 07:58:07 +02:00
Qt5,Qt6: fixed regression, signals should not be stopped for button with focusPolicy = QtNoFocus. issue #41237
This commit is contained in:
parent
adf1c1e591
commit
08438724ec
@ -6200,7 +6200,9 @@ begin
|
||||
QEventMouseButtonRelease:
|
||||
begin
|
||||
Result := SlotMouse(Sender, Event);
|
||||
if not QWidget_hasFocus(Widget) and (QMouseEvent_button(QMouseEventH(Event)) = QtLeftButton) then
|
||||
if not QWidget_hasFocus(Widget) and
|
||||
(QMouseEvent_button(QMouseEventH(Event)) = QtLeftButton) and
|
||||
(QWidget_focusPolicy(Widget) > QtNoFocus) then
|
||||
begin
|
||||
QObject_blockSignals(Sender, True);
|
||||
Application.QueueAsyncCall(@PushButtonUnblock, PtrInt(Sender));
|
||||
|
@ -6215,7 +6215,9 @@ begin
|
||||
QEventMouseButtonRelease:
|
||||
begin
|
||||
Result := SlotMouse(Sender, Event);
|
||||
if not QWidget_hasFocus(Widget) and (QMouseEvent_button(QMouseEventH(Event)) = QtLeftButton) then
|
||||
if not QWidget_hasFocus(Widget) and
|
||||
(QMouseEvent_button(QMouseEventH(Event)) = QtLeftButton) and
|
||||
(QWidget_focusPolicy(Widget) > QtNoFocus) then
|
||||
begin
|
||||
QObject_blockSignals(Sender, True);
|
||||
Application.QueueAsyncCall(@PushButtonUnblock, PtrInt(Sender));
|
||||
|
Loading…
Reference in New Issue
Block a user