|
@@ -450,7 +450,12 @@ begin
|
|
|
|
|
|
if (ssCtrl in Shift) and (ssShift in Shift) and (ssAlt in Shift)
|
|
|
and (Key in [67, 99]) then // 'c', 'C'
|
|
|
- actnCalculateAll.Execute;
|
|
|
+ begin
|
|
|
+ if _IsDebugView then
|
|
|
+ TProjectData(FBillsMeasureData.ProjectData).CalculateAll
|
|
|
+ else
|
|
|
+ actnCalculateAll.Execute;
|
|
|
+ end;
|
|
|
|
|
|
if (ssCtrl in Shift) and (ssShift in Shift) and (ssAlt in Shift)
|
|
|
and (Key in [66, 98]) then
|