We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 699fde0 commit ea9c4d0Copy full SHA for ea9c4d0
1 file changed
source/main.pas
@@ -11608,7 +11608,10 @@ procedure TMainForm.AnyGridMouseUp(Sender: TObject; Button: TMouseButton;
11608
Grid := Sender as TVirtualStringTree;
11609
if not Assigned(Grid.FocusedNode) then
11610
Exit;
11611
- Grid.GetHitTestInfoAt(X, Y, False, Hit);
+ // Exit early for non-result-grids like ListTables
11612
+ if Grid <> ActiveGrid then
11613
+ Exit;
11614
+ Grid.GetHitTestInfoAt(X, Y, True, Hit);
11615
if (Hit.HitNode = nil) or (Hit.HitColumn = NoColumn) or (Hit.HitColumn = InvalidColumn) then begin
11616
Results := GridResult(Grid);
11617
if Results.Modified then begin
0 commit comments