Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 357 Bytes

togglesideal.md

File metadata and controls

21 lines (15 loc) · 357 Bytes

Turn up the jam

Image of feature toggle enabled
class procedure TfrmMain.Printscreen;
begin
  if Unleash.IsEnabled('cis.fastreportprintscreen') then
    FastReportPrintscreen
  else
    OldBrokenPrintscreen;
end;