소스 검색

FIX: Set focus on the right mouse button click (fixes #2395)

Alexander Koblov 2 달 전
부모
커밋
654eae2e0c
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      src/fileviews/ufileviewwithgrid.pas

+ 4 - 4
src/fileviews/ufileviewwithgrid.pas

@@ -287,10 +287,10 @@ begin
     begin
       OnMouseDown(Self, Button, Shift, X, Y);
     end;
-    if not Focused then
-    begin
-      if CanSetFocus then SetFocus;
-    end;
+  end;
+  if not Focused then
+  begin
+    if CanSetFocus then SetFocus;
   end;
 end;