Browse Source

Bug #903 项目管理界面,标签栏右键不应显示关闭项目

MaiXinRong 9 năm trước cách đây
mục cha
commit
8d3c5eaf95
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Forms/MainFrm.pas

+ 1 - 1
Forms/MainFrm.pas

@@ -453,7 +453,7 @@ end;
 procedure TMainForm.jtsProjectsMouseDown(Sender: TObject;
   Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
 begin
-  if Button = mbRight then
+  if (Button = mbRight) and (jtsProjects.TabIndex > 0) then
     dxpmTabSet.PopupFromCursorPos;
 end;